IReadOnlyTypeBase.FindProperties(IReadOnlyList<String>) 方法

定义

查找给定类型上的匹配属性。 null如果未找到任何属性,则返回 。

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)

参数

propertyNames
IReadOnlyList<String>

属性名称。

返回

属性;如果未找到任何属性,则为 。null

注解

此 API 仅查找标量属性,而找不到导航属性、复杂属性或服务属性。

适用于