Partager via


PathSegment Constructeurs

Définition

Surcharges

PathSegment(SqlExpression)

Crée un PathSegment struct représentant l’accès à l’élément de tableau JSON.

PathSegment(String)

Crée un PathSegment struct représentant l’accès à la propriété JSON.

PathSegment(SqlExpression)

Crée un PathSegment struct représentant l’accès à l’élément de tableau 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)

Paramètres

arrayIndex
SqlExpression

abstractIndex d’un élément accessible dans le tableau JSON.

S’applique à

PathSegment(String)

Crée un PathSegment struct représentant l’accès à la propriété 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)

Paramètres

keypropertyName
String

Clé accessible dans le json.

S’applique à