IMutableEntityType.GetDeclaredServiceProperties 方法

定义

获取在此实体类型上声明的所有服务属性。

public virtual System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IMutableServiceProperty> GetDeclaredServiceProperties ();
abstract member GetDeclaredServiceProperties : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableServiceProperty>
override this.GetDeclaredServiceProperties : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableServiceProperty>
Public Overridable Function GetDeclaredServiceProperties () As IEnumerable(Of IMutableServiceProperty)

返回

声明的服务属性。

注解

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

适用于