PathSegment Constructores

Definición

Sobrecargas

PathSegment(SqlExpression)

Crea un nuevo PathSegment struct que representa el acceso al elemento de matriz JSON.

PathSegment(String)

Crea una nueva PathSegment estructura que representa el acceso a propiedades JSON.

PathSegment(SqlExpression)

Source:
PathSegment.cs
Source:
PathSegment.cs

Crea un nuevo PathSegment struct que representa el acceso al 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

abstractÍndice de un elemento al que se accede en la matriz JSON.

Se aplica a

PathSegment(String)

Source:
PathSegment.cs
Source:
PathSegment.cs
Source:
PathSegment.cs

Crea una nueva PathSegment estructura que representa el acceso a propiedades 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

Clave a la que se accede en el json.

Se aplica a