IReadOnlyTypeBase.FindProperties(IReadOnlyList<String>) Method

Definition

Finds matching properties on the given type. Returns null if any property is not found.

public System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty>? FindProperties (System.Collections.Generic.IReadOnlyList<string> propertyNames);
abstract member FindProperties : System.Collections.Generic.IReadOnlyList<string> -> System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty>
Public Function FindProperties (propertyNames As IReadOnlyList(Of String)) As IReadOnlyList(Of IReadOnlyProperty)

Parameters

propertyNames
IReadOnlyList<String>

The property names.

Returns

The properties, or null if any property is not found.

Remarks

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

Applies to