EntityTypeExtensions.GetDeclaredProperties(IEntityType) Method

Definition

Gets all non-navigation properties declared on the given IEntityType.

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 GetProperties() to also return properties declared on base types.

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

Parameters

entityType
IEntityType

The entity type.

Returns

Declared non-navigation properties.

Applies to