MutableEntityTypeExtensions.GetDeclaredServiceProperties Method

Definition

Gets all service properties declared on the given IMutableEntityType.

This method does not return properties declared on base types. It is useful when iterating over all entity types to avoid processing the same property more than once. Use GetServiceProperties() to also return properties declared on base types.

public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IMutableServiceProperty> GetDeclaredServiceProperties (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType);
static member GetDeclaredServiceProperties : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableServiceProperty>
<Extension()>
Public Function GetDeclaredServiceProperties (entityType As IMutableEntityType) As IEnumerable(Of IMutableServiceProperty)

Parameters

entityType
IMutableEntityType

The entity type.

Returns

Declared service properties.

Applies to