次の方法で共有


EntityMappingConfiguration<TEntityType>.Properties<TObject> メソッド

定義

このマッピング フラグメントに含まれるプロパティを構成します。 このメソッドが呼び出されない場合は、マッピング フラグメントにまだ含まれていないすべてのプロパティが構成されます。

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public void Properties<TObject> (System.Linq.Expressions.Expression<Func<TEntityType,TObject>> propertiesExpression);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public void Properties<TObject> (System.Linq.Expressions.Expression<Func<TEntityType,TObject>> propertiesExpression);
member this.Properties : System.Linq.Expressions.Expression<Func<'EntityType, 'Object>> -> unit
Public Sub Properties(Of TObject) (propertiesExpression As Expression(Of Func(Of TEntityType, TObject)))

型パラメーター

TObject

マップされるプロパティを含む匿名型。

パラメーター

propertiesExpression
Expression<Func<TEntityType,TObject>>

マップするプロパティを含む匿名型へのラムダ式。 C#: t => new { t.Id, t.Property1, t.Property2 } VB.Net: Function(t) New With { p.Id, t.Property1, t.Property2 }

属性

適用対象