JsonScalarExpression 构造函数

定义

重载

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

创建 JsonScalarExpression 类的新实例。

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

创建 JsonScalarExpression 类的新实例。

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

Source:
JsonScalarExpression.cs

创建 JsonScalarExpression 类的新实例。

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)

参数

jsonColumn
ColumnExpression

包含 JSON 值的列。

property
IProperty

一个属性,表示此表达式的结果。

path
IReadOnlyList<PathSegment>

从列中存储的 JSON 的根目录指向标量的路径段列表。

nullable
Boolean

一个值,该值指示表达式是否可为 null。

适用于

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

Source:
JsonScalarExpression.cs
Source:
JsonScalarExpression.cs

创建 JsonScalarExpression 类的新实例。

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)

参数

json
SqlExpression

表示 JSON 值的表达式。

path
IReadOnlyList<PathSegment>

从列中存储的 JSON 的根目录指向标量的路径段列表。

type
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping 表达式关联的 。

nullable
Boolean

一个值,该值指示表达式是否可为 null。

适用于