Freigeben über


EntityMappingConfiguration<TEntityType>.Properties<TObject> Methode

Definition

Konfiguriert die Eigenschaften, die in diesem Mappingfragment enthalten sind. Wenn diese Methode nicht aufgerufen wird, werden alle Eigenschaften konfiguriert, die noch nicht in einem Zuordnungsfragment enthalten sind.

[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)))

Typparameter

TObject

Ein anonymer Typ, der die zuzuordnenden Eigenschaften enthält.

Parameter

propertiesExpression
Expression<Func<TEntityType,TObject>>

Ein Lambdaausdruck für einen anonymen Typ, der die zuzuordnenden Eigenschaften enthält. C#: t => new { t.Id, t.Property1, t.Property2 } VB.Net: Function(t) New With { p.Id, t.Property1, t.Property2 }

Attribute

Gilt für: