Skip to main content

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
TypeNameDescription
IDbCommandcommandThe raw command prior to execution

| | ServiceStack.OrmLite.Dapper.SqlMapper.Identity | identity | Information about the query

|