IEntityType.GetProperty(String) Method

Definition

Gets a property with the given name.

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

public virtual Microsoft.EntityFrameworkCore.Metadata.IProperty GetProperty (string name);
abstract member GetProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IProperty
override this.GetProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IProperty
Public Overridable Function GetProperty (name As String) As IProperty

Parameters

name
String

The property name.

Returns

IProperty

The property, or null if none is found.

Applies to