using System.Data; namespace Dapper { partial class SqlMapper { /// /// Implement this interface to pass an arbitrary db specific parameter to Dapper /// public interface ICustomQueryParameter { /// /// Add the parameter needed to the command before it executes /// /// The raw command prior to execution /// Parameter name void AddParameter(IDbCommand command, string name); } } }