EntityTypeExtensions.GetProperty(IEntityType, String) Method

Definition

Gets a property with the given name.

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

public static Microsoft.EntityFrameworkCore.Metadata.IProperty GetProperty (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, string name);
static member GetProperty : Microsoft.EntityFrameworkCore.Metadata.IEntityType * string -> Microsoft.EntityFrameworkCore.Metadata.IProperty
<Extension()>
Public Function GetProperty (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