IEntityType.GetDeclaredServiceProperties Method

Definition

Gets all service properties declared on the given IEntityType.

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

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