SqlMapper.IDynamicParameters
Implement this interface to pass an arbitrary db specific set of parameters to Dapper
Assembly: ServiceStack.OrmLite.dll
View Source
Declaration
public interface IDynamicParameters
Methods
AddParameters(IDbCommand, SqlMapper.Identity)
Add all the parameters needed to the command just before it executes
View Source
Declaration
void AddParameters(IDbCommand command, SqlMapper.Identity identity)
Parameters
| Type | Name | Description |
|---|---|---|
IDbCommand | command | The raw command prior to execution |
| | ServiceStack.OrmLite.Dapper.SqlMapper.Identity | identity | Information about the query
|