Freigeben über


JsonScalarExpression Konstruktoren

Definition

Überlädt

JsonScalarExpression(ColumnExpression, IProperty, IReadOnlyList<PathSegment>, Boolean)

Erstellt eine neue Instanz der JsonScalarExpression-Klasse.

JsonScalarExpression(SqlExpression, IReadOnlyList<PathSegment>, Type, RelationalTypeMapping, Boolean)

Erstellt eine neue Instanz der JsonScalarExpression-Klasse.

JsonScalarExpression(ColumnExpression, IProperty, IReadOnlyList<PathSegment>, Boolean)

Quelle:
JsonScalarExpression.cs

Erstellt eine neue Instanz der JsonScalarExpression-Klasse.

public JsonScalarExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression jsonColumn, Microsoft.EntityFrameworkCore.Metadata.IProperty property, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.PathSegment> path, bool nullable);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression * Microsoft.EntityFrameworkCore.Metadata.IProperty * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.PathSegment> * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression
Public Sub New (jsonColumn As ColumnExpression, property As IProperty, path As IReadOnlyList(Of PathSegment), nullable As Boolean)

Parameter

jsonColumn
ColumnExpression

Eine Spalte, die einen JSON-Wert enthält.

property
IProperty

Eine Eigenschaft, die das Ergebnis dieses Ausdrucks darstellt.

path
IReadOnlyList<PathSegment>

Eine Liste der Pfadsegmente, die vom Stamm des in der Spalte gespeicherten JSON-Codes zum Skalar führen.

nullable
Boolean

Ein -Wert, der angibt, ob der Ausdruck NULL-wertefähig ist.

Gilt für:

JsonScalarExpression(SqlExpression, IReadOnlyList<PathSegment>, Type, RelationalTypeMapping, Boolean)

Quelle:
JsonScalarExpression.cs
Quelle:
JsonScalarExpression.cs

Erstellt eine neue Instanz der JsonScalarExpression-Klasse.

public JsonScalarExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression json, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.PathSegment> path, Type type, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping, bool nullable);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.PathSegment> * Type * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression
Public Sub New (json As SqlExpression, path As IReadOnlyList(Of PathSegment), type As Type, typeMapping As RelationalTypeMapping, nullable As Boolean)

Parameter

json
SqlExpression

Ein Ausdruck, der einen JSON-Wert darstellt.

path
IReadOnlyList<PathSegment>

Eine Liste der Pfadsegmente, die vom Stamm des in der Spalte gespeicherten JSON-Codes zum Skalar führen.

type
Type

Der Type des Ausdrucks.

typeMapping
RelationalTypeMapping

Die RelationalTypeMapping dem Ausdruck zugeordnete.

nullable
Boolean

Ein -Wert, der angibt, ob der Ausdruck NULL-wertefähig ist.

Gilt für: