Share via


RuntimeTypeBase.GetDeclaredProperties Method

Definition

Gets all scalar properties declared on this type.

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

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