IEntityType.GetProperty(String) Method

Definition

Gets a property with the given name.

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

The property.

Implements

Remarks

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

Applies to