Interface IInsertBuilderEntry
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the insert builder entry type.
public interface IInsertBuilderEntryMethods
InsertInto(ref InsertInterpolatedStringHandler)
Appends the INSERT INTO clause and the interpolated string to the builder.
IInsertBuilder InsertInto(ref InsertInterpolatedStringHandler handler)Parameters
handlerInsertInterpolatedStringHandler-
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
InsertIntoandDeleteFromon the same builder instance.