IEntityType.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.IProperty>? FindProperties (System.Collections.Generic.IReadOnlyList<string> propertyNames);
abstract member FindProperties : System.Collections.Generic.IReadOnlyList<string> -> System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty>
override this.FindProperties : System.Collections.Generic.IReadOnlyList<string> -> System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty>
Public Overridable Function FindProperties (propertyNames As IReadOnlyList(Of String)) As IReadOnlyList(Of IProperty)

Parameters

propertyNames
IReadOnlyList<String>

The property names.

Returns

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

Implements

Remarks

This API only finds scalar properties and does not find navigation properties.

Applies to