EntityEntry.ComplexProperty 方法

定义

重载

ComplexProperty(IComplexProperty)

提供对此实体上复杂类型的给定属性的更改跟踪信息和操作的访问。

ComplexProperty(String)

提供对此实体上复杂类型的给定属性的更改跟踪信息和操作的访问。

ComplexProperty(IComplexProperty)

提供对此实体上复杂类型的给定属性的更改跟踪信息和操作的访问。

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry ComplexProperty (Microsoft.EntityFrameworkCore.Metadata.IComplexProperty property);
abstract member ComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IComplexProperty -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
override this.ComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IComplexProperty -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
Public Overridable Function ComplexProperty (property As IComplexProperty) As ComplexPropertyEntry

参数

property
IComplexProperty

要访问其信息和操作的属性。

返回

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

注解

有关详细信息和示例,请参阅 在 EF Core 中访问跟踪的实体

适用于

ComplexProperty(String)

提供对此实体上复杂类型的给定属性的更改跟踪信息和操作的访问。

public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry ComplexProperty (string propertyName);
abstract member ComplexProperty : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
override this.ComplexProperty : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry
Public Overridable Function ComplexProperty (propertyName As String) As ComplexPropertyEntry

参数

propertyName
String

要访问其信息和操作的属性。

返回

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

注解

有关详细信息和示例,请参阅 在 EF Core 中访问跟踪的实体

适用于