Class SimpleBuilder
- Namespace
- Dapper.SimpleSqlBuilder
- Assembly
- Dapper.SimpleSqlBuilder.dll
A static class that enables creation of builder instances.
public static class SimpleBuilderInheritance
Methods
Create(FormattableString?, string?, bool?)
A static method to create a builder instance.
public static Builder Create(FormattableString? formattable = null, string? parameterPrefix = null, bool? reuseParameters = null)Parameters
formattableFormattableString?-
The FormattableString.
parameterPrefixstring?-
The value to override the DatabaseParameterPrefix value.
reuseParametersbool?-
The value to override the ReuseParameters value.
Returns
Create(ref BuilderInterpolatedStringHandler)
A static method to create a builder instance.
public static Builder Create(ref BuilderInterpolatedStringHandler handler)Parameters
handlerBuilderInterpolatedStringHandler-
The BuilderInterpolatedStringHandler to use for creating the builder.
Returns
CreateFluent(string?, bool?, bool?)
A static method to create a fluent builder instance.
public static ISimpleFluentBuilderEntry CreateFluent(string? parameterPrefix = null, bool? reuseParameters = null, bool? useLowerCaseClauses = null)Parameters
parameterPrefixstring?-
The value to override the DatabaseParameterPrefix value.
reuseParametersbool?-
The value to override the ReuseParameters value.
useLowerCaseClausesbool?-
The value to override the UseLowerCaseClauses value.
Returns
- ISimpleFluentBuilderEntry
-
A new instance of ISimpleFluentBuilderEntry.