Table of Contents

Interface IInsertBuilderEntry

Namespace
Dapper.SimpleSqlBuilder.FluentBuilder
Assembly
Dapper.SimpleSqlBuilder.dll

An interface that defines the insert builder entry type.

public interface IInsertBuilderEntry

Methods

InsertInto(ref InsertInterpolatedStringHandler)

Appends the INSERT INTO clause and the interpolated string to the builder.

IInsertBuilder InsertInto(ref InsertInterpolatedStringHandler handler)

Parameters

handler InsertInterpolatedStringHandler

The handler for the interpolated string.

Returns

IInsertBuilder

The IInsertBuilder instance.

Exceptions

InvalidOperationException

Thrown when two entry clauses are called on the same instance, e.g., calling InsertInto and DeleteFrom on the same builder instance.