RuntimeEntityType.IEntityType.FindProperty(String) Method

Definition

Gets the property with a given name. Returns null if no property with the given name is defined.

[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.IProperty? IEntityType.FindProperty (string name);
[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.Metadata.IProperty IEntityType.FindProperty (string name);
[<System.Diagnostics.DebuggerStepThrough>]
abstract member Microsoft.EntityFrameworkCore.Metadata.IEntityType.FindProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IProperty
override this.Microsoft.EntityFrameworkCore.Metadata.IEntityType.FindProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IProperty
Function FindProperty (name As String) As IProperty Implements IEntityType.FindProperty

Parameters

name
String

The name of the property.

Returns

The property, or null if none is found.

Implements

Attributes

Applies to