IMutableEntityType.GetDeclaredProperties Method

Definition

Gets all non-navigation properties declared on this entity type.

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

Returns

Declared non-navigation properties.

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