IEntityType.GetDeclaredProperties Method

Definition

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

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IProperty> GetDeclaredProperties ();
abstract member GetDeclaredProperties : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IProperty>
Public Function GetDeclaredProperties () As IEnumerable(Of IProperty)

Returns

Declared non-navigation properties.

Implements

Remarks

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.

Applies to