PathSegment Costruttori

Definizione

Overload

PathSegment(SqlExpression)

Crea un nuovo PathSegment struct che rappresenta l'accesso all'elemento matrice JSON.

PathSegment(String)

Crea un nuovo PathSegment struct che rappresenta l'accesso alle proprietà JSON.

PathSegment(SqlExpression)

Origine:
PathSegment.cs
Origine:
PathSegment.cs

Crea un nuovo PathSegment struct che rappresenta l'accesso all'elemento matrice 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)

Parametri

arrayIndex
SqlExpression

abstractIndice di un elemento a cui si accede nella matrice JSON.

Si applica a

PathSegment(String)

Origine:
PathSegment.cs
Origine:
PathSegment.cs
Origine:
PathSegment.cs

Crea un nuovo PathSegment struct che rappresenta l'accesso alle proprietà 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)

Parametri

keypropertyName
String

Chiave a cui viene eseguito l'accesso in JSON.

Si applica a