Table of Contents

Class SimpleBuilder

Namespace
Dapper.SimpleSqlBuilder
Assembly
Dapper.SimpleSqlBuilder.dll

A static class that enables creation of builder instances.

public static class SimpleBuilder

Inheritance

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

formattable FormattableString?

The FormattableString.

parameterPrefix string?

The value to override the DatabaseParameterPrefix value.

reuseParameters bool?

The value to override the ReuseParameters value.

Returns

Builder

A new instance of Builder.

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

parameterPrefix string?

The value to override the DatabaseParameterPrefix value.

reuseParameters bool?

The value to override the ReuseParameters value.

useLowerCaseClauses bool?

The value to override the UseLowerCaseClauses value.

Returns

ISimpleFluentBuilderEntry

A new instance of ISimpleFluentBuilderEntry.