Interface IDeleteBuilderEntry
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the delete builder entry type.
public interface IDeleteBuilderEntryMethods
DeleteFrom(ref DeleteInterpolatedStringHandler)
Appends the DELETE FROM clause and the interpolated string to the builder.
IDeleteBuilder DeleteFrom(ref DeleteInterpolatedStringHandler handler)Parameters
handlerDeleteInterpolatedStringHandler-
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
DeleteFromandSelecton the same builder instance.