EntityCommand Class
Represents a command for the conceptual layer.
Assembly: System.Data.Entity (in System.Data.Entity.dll)
System::MarshalByRefObject
System.ComponentModel::Component
System.Data.Common::DbCommand
System.Data.EntityClient::EntityCommand
| Name | Description | |
|---|---|---|
![]() | EntityCommand() | Initializes a new instance of the EntityCommand class using the specified values. |
![]() | EntityCommand(String^) | Initializes a new instance of the EntityCommand class with the specified statement. |
![]() | EntityCommand(String^, EntityConnection^) | Initializes a new instance of the EntityCommand class with the specified statement and connection. |
![]() | EntityCommand(String^, EntityConnection^, EntityTransaction^) | Initializes a new instance of the EntityCommand class with the specified statement, connection and transaction. |
| Name | Description | |
|---|---|---|
![]() | CommandText | Gets or sets an Entity SQL statement that specifies a command or stored procedure to execute.(Overrides DbCommand::CommandText.) |
![]() | CommandTimeout | Gets or sets the amount of time to wait before timing out.(Overrides DbCommand::CommandTimeout.) |
![]() | CommandTree | Gets or sets the command tree to execute; only one of the command tree or the command text can be set, not both. |
![]() | CommandType | Gets or sets a value that indicates how the CommandText property is to be interpreted.(Overrides DbCommand::CommandType.) |
![]() | Connection | Gets or sets the EntityConnection used by the EntityCommand. |
![]() | Container | Gets the IContainer that contains the Component.(Inherited from Component.) |
![]() | DesignTimeVisible | Gets or sets a value that indicates whether the command object should be visible in a Windows Form Designer control.(Overrides DbCommand::DesignTimeVisible.) |
![]() | EnablePlanCaching | Gets or sets a value that indicates whether the query plan caching is enabled. |
![]() | Parameters | Gets the parameters of the Entity SQL statement or stored procedure. |
![]() | Site | |
![]() | Transaction | Gets or sets the transaction within which the SqlCommand executes. |
![]() | UpdatedRowSource | Gets or sets how command results are applied to rows being updated.(Overrides DbCommand::UpdatedRowSource.) |
| Name | Description | |
|---|---|---|
![]() | Cancel() | Cancels the execution of an EntityCommand.(Overrides DbCommand::Cancel().) |
![]() | CreateObjRef(Type^) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from MarshalByRefObject.) |
![]() | CreateParameter() | Creates a new instance of an EntityParameter object. |
![]() | Dispose() | |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | ExecuteNonQuery() | Executes the current command.(Overrides DbCommand::ExecuteNonQuery().) |
![]() | ExecuteNonQueryAsync() | An asynchronous version of ExecuteNonQuery, which executes a SQL statement against a connection object. Invokes ExecuteNonQueryAsync with CancellationToken.None.(Inherited from DbCommand.) |
![]() | ExecuteNonQueryAsync(CancellationToken) | This is the asynchronous version of ExecuteNonQuery. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored. The default implementation invokes the synchronous ExecuteNonQuery method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteNonQuery will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbCommand object until the returned Task is complete.(Inherited from DbCommand.) |
![]() | ExecuteReader() | Executes the command and returns a data reader. |
![]() | ExecuteReader(CommandBehavior) | Compiles the CommandText into a command tree and passes it to the underlying store provider for execution, then builds an EntityDataReader out of the produced result set using the specified CommandBehavior. |
![]() | ExecuteReaderAsync() | An asynchronous version of ExecuteReader, which executes the CommandText against the Connection and returns a DbDataReader. Invokes ExecuteDbDataReaderAsync with CancellationToken.None.(Inherited from DbCommand.) |
![]() | ExecuteReaderAsync(CancellationToken) | An asynchronous version of ExecuteReader, which executes the CommandText against the Connection and returns a DbDataReader. This method propagates a notification that operations should be canceled. Invokes ExecuteDbDataReaderAsync.(Inherited from DbCommand.) |
![]() | ExecuteReaderAsync(CommandBehavior) | An asynchronous version of ExecuteReader, which executes the CommandText against the Connection and returns a DbDataReader. Invokes ExecuteDbDataReaderAsync.(Inherited from DbCommand.) |
![]() | ExecuteReaderAsync(CommandBehavior, CancellationToken) | Invokes ExecuteDbDataReaderAsync.(Inherited from DbCommand.) |
![]() | ExecuteScalar() | Executes the command, and returns the first column of the first row in the result set. Additional columns or rows are ignored.(Overrides DbCommand::ExecuteScalar().) |
![]() | ExecuteScalarAsync() | An asynchronous version of ExecuteScalar, which executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored. Invokes ExecuteScalarAsync with CancellationToken.None.(Inherited from DbCommand.) |
![]() | ExecuteScalarAsync(CancellationToken) | This is the asynchronous version of ExecuteScalar. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored. The default implementation invokes the synchronous ExecuteScalar method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteScalar will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbCommand object until the returned Task is complete.(Inherited from DbCommand.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetLifetimeService() | Retrieves the current lifetime service object that controls the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | GetType() | |
![]() | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | Prepare() | Compiles the entity-level command and creates a prepared version of the command.(Overrides DbCommand::Prepare().) |
![]() | ToString() | |
![]() | ToTraceString() | Compiles the entity-level command and returns the store command text. |
| Name | Description | |
|---|---|---|
![]() ![]() | IDbCommand::CreateParameter() | Creates a new instance of an IDbDataParameter object.(Inherited from DbCommand.) |
![]() ![]() | IDbCommand::ExecuteReader() | Executes the CommandText against the Connection and builds an IDataReader.(Inherited from DbCommand.) |
![]() ![]() | IDbCommand::ExecuteReader(CommandBehavior) | Executes the CommandText against the Connection, and builds an IDataReader using one of the CommandBehavior values.(Inherited from DbCommand.) |
![]() ![]() | IDbCommand::Connection | Gets or sets the IDbConnection used by this instance of the IDbCommand.(Inherited from DbCommand.) |
![]() ![]() | IDbCommand::Parameters | Gets the IDataParameterCollection.(Inherited from DbCommand.) |
![]() ![]() | IDbCommand::Transaction | Gets or sets the DbTransaction within which this DbCommand object executes.(Inherited from DbCommand.) |
No content here will be updated; please do not add material here.
Available since 3.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.





