EntityEntry<TEntity>.Reference 方法

定义

重载

Reference<TProperty>(INavigationBase)

提供对引用 ((即将此实体关联到另一实体的非集合) 导航)的更改跟踪和加载信息的访问权限。

Reference<TProperty>(Expression<Func<TEntity,TProperty>>)

提供对引用 ((即将此实体关联到另一实体的非集合) 导航属性)的更改跟踪和加载信息的访问权限。

Reference<TProperty>(String)

提供对引用 ((即将此实体关联到另一实体的非集合) 导航)的更改跟踪和加载信息的访问权限。

Reference<TProperty>(INavigationBase)

提供对引用 ((即将此实体关联到另一实体的非集合) 导航)的更改跟踪和加载信息的访问权限。

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ReferenceEntry<TEntity,TProperty> Reference<TProperty> (Microsoft.EntityFrameworkCore.Metadata.INavigationBase navigation) where TProperty : class;
override this.Reference : Microsoft.EntityFrameworkCore.Metadata.INavigationBase -> Microsoft.EntityFrameworkCore.ChangeTracking.ReferenceEntry<'Entity, 'Property (requires 'Entity : null and 'Property : null)> (requires 'Property : null)
Public Overridable Function Reference(Of TProperty As Class) (navigation As INavigationBase) As ReferenceEntry(Of TEntity, TProperty)

类型参数

TProperty

参数

navigation
INavigationBase

引用导航。

返回

一个 对象,该对象公开给定导航属性的更改跟踪信息和操作。

注解

有关详细信息和示例,请参阅访问 EF Core 中的跟踪实体和更改外键和导航

适用于

Reference<TProperty>(Expression<Func<TEntity,TProperty>>)

提供对引用 ((即将此实体关联到另一实体的非集合) 导航属性)的更改跟踪和加载信息的访问权限。

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ReferenceEntry<TEntity,TProperty> Reference<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> propertyExpression) where TProperty : class;
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ReferenceEntry<TEntity,TProperty> Reference<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty?>> propertyExpression) where TProperty : class;
override this.Reference : System.Linq.Expressions.Expression<Func<'Entity, 'Property>> -> Microsoft.EntityFrameworkCore.ChangeTracking.ReferenceEntry<'Entity, 'Property (requires 'Entity : null and 'Property : null)> (requires 'Property : null)
Public Overridable Function Reference(Of TProperty As Class) (propertyExpression As Expression(Of Func(Of TEntity, TProperty))) As ReferenceEntry(Of TEntity, TProperty)

类型参数

TProperty

参数

propertyExpression
Expression<Func<TEntity,TProperty>>

一个 lambda 表达式,表示用于访问其信息和操作的引用导航。

返回

一个 对象,该对象公开给定导航属性的更改跟踪信息和操作。

注解

有关详细信息和示例,请参阅访问 EF Core 中的跟踪实体和更改外键和导航

适用于

Reference<TProperty>(String)

提供对引用 ((即将此实体关联到另一实体的非集合) 导航)的更改跟踪和加载信息的访问权限。

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ReferenceEntry<TEntity,TProperty> Reference<TProperty> (string propertyName) where TProperty : class;
override this.Reference : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ReferenceEntry<'Entity, 'Property (requires 'Entity : null and 'Property : null)> (requires 'Property : null)
Public Overridable Function Reference(Of TProperty As Class) (propertyName As String) As ReferenceEntry(Of TEntity, TProperty)

类型参数

TProperty

参数

propertyName
String

导航属性的名称。

返回

一个 对象,该对象公开给定导航属性的更改跟踪信息和操作。

注解

有关详细信息和示例,请参阅访问 EF Core 中的跟踪实体和更改外键和导航

适用于