共用方式為


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 的解析程式

適用於