Share via


IMutableTypeBase.FindProperty Method

Definition

Overloads

FindProperty(String)

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

FindProperty(MemberInfo)

Gets a property on the given type. Returns null if no property is found.

FindProperty(String)

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

public Microsoft.EntityFrameworkCore.Metadata.IMutableProperty? FindProperty (string name);
abstract member FindProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
Public Function FindProperty (name As String) As IMutableProperty

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, complex or service properties. a navigation property.

Applies to

FindProperty(MemberInfo)

Gets a property on the given type. Returns null if no property is found.

public virtual Microsoft.EntityFrameworkCore.Metadata.IMutableProperty? FindProperty (System.Reflection.MemberInfo memberInfo);
abstract member FindProperty : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
override this.FindProperty : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
Public Overridable Function FindProperty (memberInfo As MemberInfo) As IMutableProperty

Parameters

memberInfo
MemberInfo

The property on the class.

Returns

The property, or null if none is found.

Remarks

This API only finds scalar properties and does not find navigation, complex or service properties.

Applies to