You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
656 B
20 lines
656 B
using System.Data;
|
|
|
|
namespace Dapper
|
|
{
|
|
partial class SqlMapper
|
|
{
|
|
/// <summary>
|
|
/// Implement this interface to pass an arbitrary db specific set of parameters to Dapper
|
|
/// </summary>
|
|
public interface IDynamicParameters
|
|
{
|
|
/// <summary>
|
|
/// Add all the parameters needed to the command just before it executes
|
|
/// </summary>
|
|
/// <param name="command">The raw command prior to execution</param>
|
|
/// <param name="identity">Information about the query</param>
|
|
void AddParameters(IDbCommand command, Identity identity);
|
|
}
|
|
}
|
|
}
|
|
|