Interface IDeleteBuilderEntry
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the delete builder entry type.
public interface IDeleteBuilderEntry
Methods
DeleteFrom(ref DeleteInterpolatedStringHandler)
Appends the DELETE FROM
clause and the interpolated string to the builder.
IDeleteBuilder DeleteFrom(ref DeleteInterpolatedStringHandler handler)
Parameters
handler
DeleteInterpolatedStringHandler-
The handler for the interpolated string.
Returns
- IDeleteBuilder
-
The IDeleteBuilder instance.
Exceptions
- InvalidOperationException
-
Thrown when two entry clauses are called on the same instance, e.g., calling
DeleteFrom
andSelect
on the same builder instance.