Freigeben über


ProjectionBindingExpression Konstruktoren

Definition

Überlädt

ProjectionBindingExpression(Expression, IDictionary<IProperty,Int32>)

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

ProjectionBindingExpression(Expression, IReadOnlyDictionary<IProperty,Int32>)
Veraltet.

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

ProjectionBindingExpression(Expression, ProjectionMember, Type)

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

ProjectionBindingExpression(Expression, Int32, Type)

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

ProjectionBindingExpression(Expression, IDictionary<IProperty,Int32>)

Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

public ProjectionBindingExpression (System.Linq.Expressions.Expression queryExpression, System.Collections.Generic.IDictionary<Microsoft.EntityFrameworkCore.Metadata.IProperty,int> indexMap);
new Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression : System.Linq.Expressions.Expression * System.Collections.Generic.IDictionary<Microsoft.EntityFrameworkCore.Metadata.IProperty, int> -> Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression
Public Sub New (queryExpression As Expression, indexMap As IDictionary(Of IProperty, Integer))

Parameter

queryExpression
Expression

Der Abfrageausdruck, aus dem der Wert abgerufen werden soll.

indexMap
IDictionary<IProperty,Int32>

Die Indexzuordnung, die mit der Abfrageausdruckprojektion für ValueBuffer gebunden werden soll.

Gilt für:

ProjectionBindingExpression(Expression, IReadOnlyDictionary<IProperty,Int32>)

Quelle:
ProjectionBindingExpression.cs

Achtung

The dictionary should be stored in client projection in query expression and access via index based binding.

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

[System.Obsolete("The dictionary should be stored in client projection in query expression and access via index based binding.")]
public ProjectionBindingExpression (System.Linq.Expressions.Expression queryExpression, System.Collections.Generic.IReadOnlyDictionary<Microsoft.EntityFrameworkCore.Metadata.IProperty,int> indexMap);
[<System.Obsolete("The dictionary should be stored in client projection in query expression and access via index based binding.")>]
new Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyDictionary<Microsoft.EntityFrameworkCore.Metadata.IProperty, int> -> Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression
Public Sub New (queryExpression As Expression, indexMap As IReadOnlyDictionary(Of IProperty, Integer))

Parameter

queryExpression
Expression

Der Abfrageausdruck, aus dem der Wert abgerufen werden soll.

indexMap
IReadOnlyDictionary<IProperty,Int32>

Die Indexzuordnung, die mit der Abfrageausdruckprojektion für ValueBuffer gebunden werden soll.

Attribute

Gilt für:

ProjectionBindingExpression(Expression, ProjectionMember, Type)

Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

public ProjectionBindingExpression (System.Linq.Expressions.Expression queryExpression, Microsoft.EntityFrameworkCore.Query.ProjectionMember projectionMember, Type type);
new Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression : System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Query.ProjectionMember * Type -> Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression
Public Sub New (queryExpression As Expression, projectionMember As ProjectionMember, type As Type)

Parameter

queryExpression
Expression

Der Abfrageausdruck, aus dem der Wert abgerufen werden soll.

projectionMember
ProjectionMember

Das Projektionsmember, das an den Abfrageausdruck gebunden werden soll.

type
Type

Der clr-Werttyp, der gelesen wird.

Gilt für:

ProjectionBindingExpression(Expression, Int32, Type)

Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs
Quelle:
ProjectionBindingExpression.cs

Erstellt eine neue Instanz der ProjectionBindingExpression-Klasse.

public ProjectionBindingExpression (System.Linq.Expressions.Expression queryExpression, int index, Type type);
new Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression : System.Linq.Expressions.Expression * int * Type -> Microsoft.EntityFrameworkCore.Query.ProjectionBindingExpression
Public Sub New (queryExpression As Expression, index As Integer, type As Type)

Parameter

queryExpression
Expression

Der Abfrageausdruck, aus dem der Wert abgerufen werden soll.

index
Int32

Der Index, der mit der Abfrageausdruckprojektion gebunden werden soll.

type
Type

Der clr-Werttyp, der gelesen wird.

Gilt für: