IMutableEntityType.GetDeclaredServiceProperties Method

Definition

Gets all service properties declared on this entity type.

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

Returns

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

Applies to