IMutableEntityType.FindProperties(IReadOnlyList<String>) Method

Definition

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

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

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 or service properties.

Applies to