RuntimeEntityType.FindProperty(String) Method

Definition

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

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

Parameters

name
String

The name of the property.

Returns

The property, or null if none is found.

Remarks

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

Applies to