Table of Contents

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

IEnumerable<string>

Parameters

Gets the DynamicParameters list.

object Parameters { get; }

Property Value

object

Sql

Gets the generated the SQL.

string Sql { get; }

Property Value

string