ConventionEntityTypeExtensions.FindProperty Method

Definition

Gets a property on the given entity type. Returns null if no property is found.

This API only finds scalar properties and does not find navigation properties. Use FindNavigation(IConventionEntityType, MemberInfo) to find a navigation property.

public static Microsoft.EntityFrameworkCore.Metadata.IConventionProperty FindProperty (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, System.Reflection.MemberInfo memberInfo);
static member FindProperty : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IConventionProperty
<Extension()>
Public Function FindProperty (entityType As IConventionEntityType, memberInfo As MemberInfo) As IConventionProperty

Parameters

entityType
IConventionEntityType

The entity type.

memberInfo
MemberInfo

The property on the entity class.

Returns

The property, or null if none is found.

Applies to