JsonScalarExpression 생성자

정의

오버로드

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

JsonScalarExpression 클래스의 새 인스턴스를 만듭니다.

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

JsonScalarExpression 클래스의 새 인스턴스를 만듭니다.

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

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)

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 허용인지 여부를 나타내는 값입니다.

적용 대상