次の方法で共有


DbEntityEntry<TEntity>.Property メソッド

定義

オーバーロード

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

プロパティの名前。

戻り値

プロパティを表すオブジェクト。

適用対象