PathSegment Construtores

Definição

Sobrecargas

PathSegment(SqlExpression)

Cria um novo PathSegment struct que representa o acesso ao elemento de matriz JSON.

PathSegment(String)

Cria um novo PathSegment struct que representa o acesso à propriedade JSON.

PathSegment(SqlExpression)

Cria um novo PathSegment struct que representa o acesso ao elemento de matriz JSON.

public PathSegment (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression arrayIndex);
new Microsoft.EntityFrameworkCore.Query.PathSegment : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.PathSegment
Public Sub New (arrayIndex As SqlExpression)

Parâmetros

arrayIndex
SqlExpression

abstractUm índice de um elemento que está sendo acessado na matriz JSON.

Aplica-se a

PathSegment(String)

Cria um novo PathSegment struct que representa o acesso à propriedade JSON.

public PathSegment (string key);
public PathSegment (string propertyName);
new Microsoft.EntityFrameworkCore.Query.PathSegment : string -> Microsoft.EntityFrameworkCore.Query.PathSegment
new Microsoft.EntityFrameworkCore.Query.PathSegment : string -> Microsoft.EntityFrameworkCore.Query.PathSegment
Public Sub New (key As String)
Public Sub New (propertyName As String)

Parâmetros

keypropertyName
String

Uma chave que está sendo acessada no JSON.

Aplica-se a