共用方式為


DbEntityEntry<TEntity>.ComplexProperty 方法

定義

多載

ComplexProperty(String)

取得物件,表示這個實體的複雜屬性。

ComplexProperty<TComplexProperty>(Expression<Func<TEntity,TComplexProperty>>)

取得物件,表示這個實體的複雜屬性。

ComplexProperty<TComplexProperty>(String)

取得物件,表示這個實體的複雜屬性。

ComplexProperty(String)

取得物件,表示這個實體的複雜屬性。

public System.Data.Entity.Infrastructure.DbComplexPropertyEntry ComplexProperty (string propertyName);
member this.ComplexProperty : string -> System.Data.Entity.Infrastructure.DbComplexPropertyEntry
Public Function ComplexProperty (propertyName As String) As DbComplexPropertyEntry

參數

propertyName
String

複雜屬性的名稱。

傳回

表示複雜屬性的物件。

適用於

ComplexProperty<TComplexProperty>(Expression<Func<TEntity,TComplexProperty>>)

取得物件,表示這個實體的複雜屬性。

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1719:ParameterNamesShouldNotMatchMemberNames", Justification="Rule predates more fluent naming conventions.", MessageId="0#")]
public System.Data.Entity.Infrastructure.DbComplexPropertyEntry<TEntity,TComplexProperty> ComplexProperty<TComplexProperty> (System.Linq.Expressions.Expression<Func<TEntity,TComplexProperty>> property);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1719:ParameterNamesShouldNotMatchMemberNames", Justification="Rule predates more fluent naming conventions.", MessageId="0#")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.Infrastructure.DbComplexPropertyEntry<TEntity,TComplexProperty> ComplexProperty<TComplexProperty> (System.Linq.Expressions.Expression<Func<TEntity,TComplexProperty>> property);
member this.ComplexProperty : System.Linq.Expressions.Expression<Func<'Entity, 'ComplexProperty>> -> System.Data.Entity.Infrastructure.DbComplexPropertyEntry<'Entity, 'ComplexProperty (requires 'Entity : null)>
Public Function ComplexProperty(Of TComplexProperty) (property As Expression(Of Func(Of TEntity, TComplexProperty))) As DbComplexPropertyEntry(Of TEntity, TComplexProperty)

類型參數

TComplexProperty

複雜屬性的型別。

參數

property
Expression<Func<TEntity,TComplexProperty>>

表示複雜屬性的運算式。

傳回

表示複雜屬性的物件。

屬性

適用於

ComplexProperty<TComplexProperty>(String)

取得物件,表示這個實體的複雜屬性。

public System.Data.Entity.Infrastructure.DbComplexPropertyEntry<TEntity,TComplexProperty> ComplexProperty<TComplexProperty> (string propertyName);
member this.ComplexProperty : string -> System.Data.Entity.Infrastructure.DbComplexPropertyEntry<'Entity, 'ComplexProperty (requires 'Entity : null)>
Public Function ComplexProperty(Of TComplexProperty) (propertyName As String) As DbComplexPropertyEntry(Of TEntity, TComplexProperty)

類型參數

TComplexProperty

複雜屬性的型別。

參數

propertyName
String

複雜屬性的名稱。

傳回

表示複雜屬性的物件。

適用於