Partager via


QuerySqlGenerator.GetCommand Méthode

Définition

Surcharges

GetCommand(SelectExpression)

Obtient une commande relationnelle pour un SelectExpression.

GetCommand(Expression)

Obtient une commande relationnelle pour une expression de requête.

GetCommand(SelectExpression)

Source:
QuerySqlGenerator.cs
Source:
QuerySqlGenerator.cs
Source:
QuerySqlGenerator.cs
Source:
QuerySqlGenerator.cs

Obtient une commande relationnelle pour un SelectExpression.

public virtual Microsoft.EntityFrameworkCore.Storage.IRelationalCommand GetCommand (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression selectExpression);
abstract member GetCommand : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommand
override this.GetCommand : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommand
Public Overridable Function GetCommand (selectExpression As SelectExpression) As IRelationalCommand

Paramètres

selectExpression
SelectExpression

Expression de sélection à imprimer dans le texte de commande.

Retours

Commande relationnelle avec un SQL représenté par l’expression select.

S’applique à

GetCommand(Expression)

Source:
QuerySqlGenerator.cs
Source:
QuerySqlGenerator.cs
Source:
QuerySqlGenerator.cs

Obtient une commande relationnelle pour une expression de requête.

public virtual Microsoft.EntityFrameworkCore.Storage.IRelationalCommand GetCommand (System.Linq.Expressions.Expression queryExpression);
abstract member GetCommand : System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommand
override this.GetCommand : System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommand
Public Overridable Function GetCommand (queryExpression As Expression) As IRelationalCommand

Paramètres

queryExpression
Expression

Expression de requête à imprimer dans le texte de commande.

Retours

Commande relationnelle avec un SQL représenté par l’expression de requête.

S’applique à