DbEntityEntry<TEntity>.Property 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Property(String) |
取得物件,表示這個實體的純量或複雜屬性。 |
Property<TProperty>(Expression<Func<TEntity,TProperty>>) |
取得物件,表示這個實體的純量或複雜屬性。 |
Property<TProperty>(String) |
取得物件,表示這個實體的純量或複雜屬性。 |
Property(String)
取得物件,表示這個實體的純量或複雜屬性。
public System.Data.Entity.Infrastructure.DbPropertyEntry Property (string propertyName);
member this.Property : string -> System.Data.Entity.Infrastructure.DbPropertyEntry
Public Function Property (propertyName As String) As DbPropertyEntry
參數
- propertyName
- String
屬性的名稱。
傳回
表示屬性的物件。
適用於
Property<TProperty>(Expression<Func<TEntity,TProperty>>)
取得物件,表示這個實體的純量或複雜屬性。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1719:ParameterNamesShouldNotMatchMemberNames", Justification="Rule predates more fluent naming conventions.", MessageId="0#")]
public System.Data.Entity.Infrastructure.DbPropertyEntry<TEntity,TProperty> Property<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> 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.DbPropertyEntry<TEntity,TProperty> Property<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> property);
member this.Property : System.Linq.Expressions.Expression<Func<'Entity, 'Property>> -> System.Data.Entity.Infrastructure.DbPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Function Property(Of TProperty) (property As Expression(Of Func(Of TEntity, TProperty))) As DbPropertyEntry(Of TEntity, TProperty)
類型參數
- TProperty
屬性的類型。
參數
- property
- Expression<Func<TEntity,TProperty>>
表示 屬性的運算式。
傳回
表示屬性的物件。
- 屬性
適用於
Property<TProperty>(String)
取得物件,表示這個實體的純量或複雜屬性。
public System.Data.Entity.Infrastructure.DbPropertyEntry<TEntity,TProperty> Property<TProperty> (string propertyName);
member this.Property : string -> System.Data.Entity.Infrastructure.DbPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Function Property(Of TProperty) (propertyName As String) As DbPropertyEntry(Of TEntity, TProperty)
類型參數
- TProperty
屬性的類型。
參數
- propertyName
- String
屬性的名稱。
傳回
表示屬性的物件。