EntityTypeExtensions.FindDeclaredProperty(IEntityType, String) Method

Definition

Finds a property declared on the type with the given name. Does not return properties defined on a base type.

public static Microsoft.EntityFrameworkCore.Metadata.IProperty FindDeclaredProperty (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, string name);
static member FindDeclaredProperty : Microsoft.EntityFrameworkCore.Metadata.IEntityType * string -> Microsoft.EntityFrameworkCore.Metadata.IProperty
<Extension()>
Public Function FindDeclaredProperty (entityType As IEntityType, name As String) As IProperty

Parameters

entityType
IEntityType

The entity type.

name
String

The property name.

Returns

The property, or null if none is found.

Applies to