IEntityType.GetDeclaredNavigations 方法

定义

获取在给定 IEntityType的 上声明的所有导航属性。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.INavigation> GetDeclaredNavigations ();
abstract member GetDeclaredNavigations : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.INavigation>
Public Function GetDeclaredNavigations () As IEnumerable(Of INavigation)

返回

声明的导航属性。

注解

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

适用于