Interface IUpdateBuilderEntry
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the update builder type.
public interface IUpdateBuilderEntryMethods
Update(ref UpdateInterpolatedStringHandler)
Appends the UPDATE clause and the interpolated string to the builder.
IUpdateBuilder Update(ref UpdateInterpolatedStringHandler handler)Parameters
handlerUpdateInterpolatedStringHandler-
The handler for the interpolated string.
Returns
- IUpdateBuilder
-
The IUpdateBuilder instance.
Exceptions
- InvalidOperationException
-
Thrown when two entry clauses are called on the same instance, e.g., calling
UpdateandInsertIntoon the same builder instance.