SqlHelper..::..ExecuteReaderAsync Method
Overload List
Name | Description | |
---|---|---|
![]() ![]() |
ExecuteReaderAsync(String, CommandType, String) |
Execute a SqlCommand (that returns a resultset and takes no parameters) against the database specified in
the connection string.
|
![]() ![]() |
ExecuteReaderAsync(String, CommandType, String, array<SqlParameter>[]()[][]) |
Execute a SqlCommand (that returns a resultset) against the database specified in the connection string
using the provided parameters.
|
![]() ![]() |
ExecuteReaderAsync(String, String, array<Object>[]()[][]) |
Execute a stored procedure via a SqlCommand (that returns a resultset) against the database specified in
the connection string using the provided parameter values. This method will query the database to discover the parameters for the
stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
|
![]() ![]() |
ExecuteReaderAsync(SqlConnection, CommandType, String) |
Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlConnection.
|
![]() ![]() |
ExecuteReaderAsync(SqlConnection, CommandType, String, array<SqlParameter>[]()[][]) |
Execute a SqlCommand (that returns a resultset) against the specified SqlConnection
using the provided parameters.
|
![]() ![]() |
ExecuteReaderAsync(SqlConnection, String, array<Object>[]()[][]) |
Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified SqlConnection
using the provided parameter values. This method will query the database to discover the parameters for the
stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
|
![]() ![]() |
ExecuteReaderAsync(SqlTransaction, CommandType, String) |
Execute a SqlCommand (that returns a resultset and takes no parameters) against the provided SqlTransaction.
|
![]() ![]() |
ExecuteReaderAsync(SqlTransaction, CommandType, String, array<SqlParameter>[]()[][]) |
Execute a SqlCommand (that returns a resultset) against the specified SqlTransaction
using the provided parameters.
|
![]() ![]() |
ExecuteReaderAsync(SqlTransaction, String, array<Object>[]()[][]) |
Execute a stored procedure via a SqlCommand (that returns a resultset) against the specified
SqlTransaction using the provided parameter values. This method will query the database to discover the parameters for the
stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
|