IReadOnlyTypeBase.FindDeclaredComplexProperty(String) Method

Definition

Finds a property declared on the type with the given name. Does not return properties defined on a base type.

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

Parameters

name
String

The property name.

Returns

The property, or null if none is found.

Applies to