Interface ISqlBuilder
- Namespace
- Dapper.SimpleSqlBuilder
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the SQL builder type.
public interface ISqlBuilder
Properties
ParameterNames
Gets the parameter names.
IEnumerable<string> ParameterNames { get; }
Property Value
Parameters
Gets the DynamicParameters list.
object Parameters { get; }
Property Value
Sql
Gets the generated the SQL.
string Sql { get; }