Interface IUpdateBuilderEntry
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the update builder type.
public interface IUpdateBuilderEntry
Methods
Update(ref UpdateInterpolatedStringHandler)
Appends the UPDATE
clause and the interpolated string to the builder.
IUpdateBuilder Update(ref UpdateInterpolatedStringHandler handler)
Parameters
handler
UpdateInterpolatedStringHandler-
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
Update
andInsertInto
on the same builder instance.