ComplexPropertyEntry<TEntity,TComplexProperty>.ComplexProperty 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ComplexProperty<TNestedComplexProperty>(IComplexProperty) |
針對這個複雜類型的指定複雜類型屬性,提供變更追蹤資訊和作業的存取權。 |
ComplexProperty<TNestedComplexProperty>(Expression<Func<TComplexProperty,TNestedComplexProperty>>) |
針對這個複雜類型的指定複雜類型屬性,提供變更追蹤資訊和作業的存取權。 |
ComplexProperty<TNestedComplexProperty>(String) |
針對這個複雜類型的指定複雜類型屬性,提供變更追蹤資訊和作業的存取權。 |
ComplexProperty<TNestedComplexProperty>(IComplexProperty)
針對這個複雜類型的指定複雜類型屬性,提供變更追蹤資訊和作業的存取權。
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TNestedComplexProperty> ComplexProperty<TNestedComplexProperty> (Microsoft.EntityFrameworkCore.Metadata.IComplexProperty complexProperty);
override this.ComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IComplexProperty -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'NestedComplexProperty (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TNestedComplexProperty) (complexProperty As IComplexProperty) As ComplexPropertyEntry(Of TEntity, TNestedComplexProperty)
類型參數
- TNestedComplexProperty
屬性的類型。
參數
- complexProperty
- IComplexProperty
要存取訊號與作業的屬性。
傳回
ComplexPropertyEntry<TEntity,TNestedComplexProperty>
物件,公開指定屬性的變更追蹤資訊和作業。
備註
如需詳細資訊和範例,請參閱 存取 EF Core 中的追蹤實體 。
適用於
ComplexProperty<TNestedComplexProperty>(Expression<Func<TComplexProperty,TNestedComplexProperty>>)
針對這個複雜類型的指定複雜類型屬性,提供變更追蹤資訊和作業的存取權。
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TNestedComplexProperty> ComplexProperty<TNestedComplexProperty> (System.Linq.Expressions.Expression<Func<TComplexProperty,TNestedComplexProperty>> propertyExpression);
override this.ComplexProperty : System.Linq.Expressions.Expression<Func<'ComplexProperty, 'NestedComplexProperty>> -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'NestedComplexProperty (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TNestedComplexProperty) (propertyExpression As Expression(Of Func(Of TComplexProperty, TNestedComplexProperty))) As ComplexPropertyEntry(Of TEntity, TNestedComplexProperty)
類型參數
- TNestedComplexProperty
參數
- propertyExpression
- Expression<Func<TComplexProperty,TNestedComplexProperty>>
Lambda 運算式,表示用來存取訊號和作業的屬性。
傳回
ComplexPropertyEntry<TEntity,TNestedComplexProperty>
物件,公開指定屬性的變更追蹤資訊和作業。
備註
如需詳細資訊和範例,請參閱 存取 EF Core 中的追蹤實體 。
適用於
ComplexProperty<TNestedComplexProperty>(String)
針對這個複雜類型的指定複雜類型屬性,提供變更追蹤資訊和作業的存取權。
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TNestedComplexProperty> ComplexProperty<TNestedComplexProperty> (string propertyName);
override this.ComplexProperty : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'NestedComplexProperty (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TNestedComplexProperty) (propertyName As String) As ComplexPropertyEntry(Of TEntity, TNestedComplexProperty)
類型參數
- TNestedComplexProperty
屬性的類型。
參數
- propertyName
- String
要存取訊號與作業的屬性。
傳回
ComplexPropertyEntry<TEntity,TNestedComplexProperty>
物件,公開指定屬性的變更追蹤資訊和作業。
備註
如需詳細資訊和範例,請參閱 存取 EF Core 中的追蹤實體 。