Interface IHavingBuilder
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the having builder type.
public interface IHavingBuilder : IOrderByBuilderEntry, IFluentSqlBuilder, ISqlBuilder, IFluentBuilder
Implements
Methods
Having(ref HavingInterpolatedStringHandler)
Appends the HAVING
clause and the interpolated string to the builder.
IHavingBuilder Having(ref HavingInterpolatedStringHandler handler)
Parameters
handler
HavingInterpolatedStringHandler-
The handler for the interpolated string.
Returns
- IHavingBuilder
-
The IHavingBuilder instance.
Having(bool, ref HavingInterpolatedStringHandler)
Appends the HAVING
clause and the interpolated string to the builder.
IHavingBuilder Having(bool condition, ref HavingInterpolatedStringHandler handler)
Parameters
condition
bool-
The value to determine whether the method should be executed.
handler
HavingInterpolatedStringHandler-
The handler for the interpolated string.
Returns
- IHavingBuilder
-
The IHavingBuilder instance.