次の方法で共有


RelationalCommand コンストラクター

定義

新しい RelationalCommand を構築します。

この型は、通常、データベース プロバイダー (およびその他の拡張機能) によって使用されます。 通常、アプリケーション コードでは使用されません。

public RelationalCommand (Microsoft.EntityFrameworkCore.Storage.RelationalCommandBuilderDependencies dependencies, string commandText, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.IRelationalParameter> parameters);
new Microsoft.EntityFrameworkCore.Storage.RelationalCommand : Microsoft.EntityFrameworkCore.Storage.RelationalCommandBuilderDependencies * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.IRelationalParameter> -> Microsoft.EntityFrameworkCore.Storage.RelationalCommand
Public Sub New (dependencies As RelationalCommandBuilderDependencies, commandText As String, parameters As IReadOnlyList(Of IRelationalParameter))

パラメーター

dependencies
RelationalCommandBuilderDependencies

サービスの依存関係。

commandText
String

実行するコマンドのテキスト。

parameters
IReadOnlyList<IRelationalParameter>

コマンドのパラメーター。

適用対象