次の方法で共有


EntityCommand コンストラクター

定義

オーバーロード

EntityCommand()

指定した値を使用して、EntityCommand クラスの新しいインスタンスを初期化します。

EntityCommand(String)

指定したステートメントを使用して、EntityCommand クラスの新しいインスタンスを初期化します。

EntityCommand(String, EntityConnection)

指定したステートメントと接続を使用して、EntityCommand クラスの新しいインスタンスを初期化します。

EntityCommand(String, EntityConnection, EntityTransaction)

指定したステートメント、接続、およびトランザクションを使用して、EntityCommand クラスの新しいインスタンスを初期化します。

EntityCommand(String, EntityConnection, IDbDependencyResolver)

指定された eSQL ステートメントと使用する接続オブジェクトを使用して EntityCommand オブジェクトを構築します。

EntityCommand()

指定した値を使用して、EntityCommand クラスの新しいインスタンスを初期化します。

public EntityCommand ();
Public Sub New ()

適用対象

EntityCommand(String)

指定したステートメントを使用して、EntityCommand クラスの新しいインスタンスを初期化します。

public EntityCommand (string statement);
new System.Data.Entity.Core.EntityClient.EntityCommand : string -> System.Data.Entity.Core.EntityClient.EntityCommand
Public Sub New (statement As String)

パラメーター

statement
String

コマンドのテキストを指定します。

適用対象

EntityCommand(String, EntityConnection)

指定したステートメントと接続を使用して、EntityCommand クラスの新しいインスタンスを初期化します。

public EntityCommand (string statement, System.Data.Entity.Core.EntityClient.EntityConnection connection);
new System.Data.Entity.Core.EntityClient.EntityCommand : string * System.Data.Entity.Core.EntityClient.EntityConnection -> System.Data.Entity.Core.EntityClient.EntityCommand
Public Sub New (statement As String, connection As EntityConnection)

パラメーター

statement
String

コマンドのテキストを指定します。

connection
EntityConnection

データ ソースへの接続。

適用対象

EntityCommand(String, EntityConnection, EntityTransaction)

指定したステートメント、接続、およびトランザクションを使用して、EntityCommand クラスの新しいインスタンスを初期化します。

public EntityCommand (string statement, System.Data.Entity.Core.EntityClient.EntityConnection connection, System.Data.Entity.Core.EntityClient.EntityTransaction transaction);
new System.Data.Entity.Core.EntityClient.EntityCommand : string * System.Data.Entity.Core.EntityClient.EntityConnection * System.Data.Entity.Core.EntityClient.EntityTransaction -> System.Data.Entity.Core.EntityClient.EntityCommand
Public Sub New (statement As String, connection As EntityConnection, transaction As EntityTransaction)

パラメーター

statement
String

コマンドのテキストを指定します。

connection
EntityConnection

データ ソースへの接続。

transaction
EntityTransaction

コマンドを実行するトランザクション。

適用対象

EntityCommand(String, EntityConnection, IDbDependencyResolver)

指定された eSQL ステートメントと使用する接続オブジェクトを使用して EntityCommand オブジェクトを構築します。

public EntityCommand (string statement, System.Data.Entity.Core.EntityClient.EntityConnection connection, System.Data.Entity.Infrastructure.DependencyResolution.IDbDependencyResolver resolver);
new System.Data.Entity.Core.EntityClient.EntityCommand : string * System.Data.Entity.Core.EntityClient.EntityConnection * System.Data.Entity.Infrastructure.DependencyResolution.IDbDependencyResolver -> System.Data.Entity.Core.EntityClient.EntityCommand
Public Sub New (statement As String, connection As EntityConnection, resolver As IDbDependencyResolver)

パラメーター

statement
String

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

connection
EntityConnection

接続オブジェクト

resolver
IDbDependencyResolver

DbProviderServices を解決するために使用されるリゾルバー

適用対象