次の方法で共有


QuerySqlGenerator.GetCommand メソッド

定義

オーバーロード

GetCommand(SelectExpression)

のリレーショナル コマンドを SelectExpression取得します。

GetCommand(Expression)

クエリ式のリレーショナル コマンドを取得します。

GetCommand(SelectExpression)

のリレーショナル コマンドを 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

パラメーター

selectExpression
SelectExpression

コマンド テキストで出力する select 式。

戻り値

select 式で表される SQL を含むリレーショナル コマンド。

適用対象

GetCommand(Expression)

クエリ式のリレーショナル コマンドを取得します。

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

パラメーター

queryExpression
Expression

コマンド テキストで出力するクエリ式。

戻り値

クエリ式で表される SQL を含むリレーショナル コマンド。

適用対象