DatabaseExtensions.ExecuteSprocAccessor<TResult> Method
Include Protected Members
Include Inherited Members
Overload List
Name | Description | |
---|---|---|
ExecuteSprocAccessor<TResult>(Database, String, array<Object[]) |
Executes a stored procedure and returns the result as an enumerable of TResult. The conversion from IDataRecord to TResult will be done for each property based on matching property name to column name.
|
|
ExecuteSprocAccessor<TResult>(Database, String, IParameterMapper, array<Object[]) |
Executes a stored procedure and returns the result as an enumerable of TResult. The conversion from IDataRecord to TResult will be done for each property based on matching property name to column name.
|
|
ExecuteSprocAccessor<TResult>(Database, String, IResultSetMapper<TResult>, array<Object[]) |
Executes a stored procedure and returns the result as an enumerable of TResult.
|
|
ExecuteSprocAccessor<TResult>(Database, String, IRowMapper<TResult>, array<Object[]) |
Executes a stored procedure and returns the result as an enumerable of TResult.
|
|
ExecuteSprocAccessor<TResult>(Database, String, IParameterMapper, IResultSetMapper<TResult>, array<Object[]) |
Executes a stored procedure and returns the result as an enumerable of TResult.
|
|
ExecuteSprocAccessor<TResult>(Database, String, IParameterMapper, IRowMapper<TResult>, array<Object[]) |
Executes a stored procedure and returns the result as an enumerable of TResult.
|