IReadOnlyTypeBase.GetDeclaredProperties Method

Definition

Gets all scalar properties declared on this type.

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

Returns

Declared scalar properties.

Remarks

This method does not return properties declared on base types. It is useful when iterating over all types to avoid processing the same property more than once. Use GetProperties() to also return properties declared on base types.

Applies to