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.
Microsoft.Practices.EnterpriseLibrary.Data.IParameterMapper Interface Reference

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...
 

Detailed Description

Interface used to interpret parameters passed to an DataAccessor<TResult>.Execute(object[]) method and assign them to the DbCommand that will be executed.

Member Function Documentation

◆ AssignParameters()

void Microsoft.Practices.EnterpriseLibrary.Data.IParameterMapper.AssignParameters ( DbCommand  command,
object[]  parameterValues 
)

Assigns the values from parameterValues to the command 's Parameters list.

Parameters
commandThe command the parameter values will be assigned to
parameterValuesThe parameter values that will be assigned to the command.

The documentation for this interface was generated from the following file: