Interface IHavingBuilder
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the having builder type.
public interface IHavingBuilder : IOrderByBuilderEntry, IFluentSqlBuilder, ISqlBuilder, IFluentBuilderImplements
Methods
Having(ref HavingInterpolatedStringHandler)
Appends the HAVING clause and the interpolated string to the builder.
IHavingBuilder Having(ref HavingInterpolatedStringHandler handler)Parameters
handlerHavingInterpolatedStringHandler-
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
conditionbool-
The value to determine whether the method should be executed.
handlerHavingInterpolatedStringHandler-
The handler for the interpolated string.
Returns
- IHavingBuilder
-
The IHavingBuilder instance.