EntityTypeExtensions.GetDeclaredServiceProperties(IEntityType) 方法

定义

获取在给定 IEntityType的 上声明的所有服务属性。

此方法不返回在基类型上声明的属性。 循环访问所有实体类型以避免多次处理同一属性时,它很有用。 使用 GetServiceProperties() 还返回在基类型上声明的属性。

public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IServiceProperty> GetDeclaredServiceProperties (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetDeclaredServiceProperties : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> seq<Microsoft.EntityFrameworkCore.Metadata.IServiceProperty>
<Extension()>
Public Function GetDeclaredServiceProperties (entityType As IEntityType) As IEnumerable(Of IServiceProperty)

参数

entityType
IEntityType

实体类型。

返回

声明的服务属性。

适用于