QuerySqlGenerator.GetCommand Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
GetCommand(SelectExpression) |
Obtient une commande relationnelle pour un SelectExpression. |
GetCommand(Expression) |
Obtient une commande relationnelle pour une expression de requête. |
GetCommand(SelectExpression)
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)
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.