MutableEntityTypeExtensions.FindDeclaredProperty 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.IMutableProperty FindDeclaredProperty (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, string name);
static member FindDeclaredProperty : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * string -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
<Extension()>
Public Function FindDeclaredProperty (entityType As IMutableEntityType, name As String) As IMutableProperty

Parameters

entityType
IMutableEntityType

The entity type.

name
String

The property name.

Returns

The property, or null if none is found.

Applies to