Enterprise Library Data Access Application Block
7.0-rc1
The Data Access Application Block abstracts the actual database you are using, and exposes a collection of methods that make it easy to access that database and to perform common tasks.
|
Interface used to interpret parameters passed to an DataAccessor<TResult>.Execute(object[]) method and assign them to the DbCommand that will be executed. More...
Public Member Functions | |
void | AssignParameters (DbCommand command, object[] parameterValues) |
Assigns the values from parameterValues to the command 's Parameters list. More... | |
Interface used to interpret parameters passed to an DataAccessor<TResult>.Execute(object[]) method and assign them to the DbCommand that will be executed.
void Microsoft.Practices.EnterpriseLibrary.Data.IParameterMapper.AssignParameters | ( | DbCommand | command, |
object[] | parameterValues | ||
) |
Assigns the values from parameterValues to the command 's Parameters list.
command | The command the parameter values will be assigned to |
parameterValues | The parameter values that will be assigned to the command. |