Interface ISelectBuilderEntry
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the select builder entry type.
public interface ISelectBuilderEntryMethods
Select(ref SelectInterpolatedStringHandler)
Appends the SELECT clause and the interpolated string to the builder.
ISelectBuilder Select(ref SelectInterpolatedStringHandler handler)Parameters
handlerSelectInterpolatedStringHandler-
The handler for the interpolated string.
Returns
- ISelectBuilder
-
The ISelectBuilder instance.
Exceptions
- InvalidOperationException
-
Thrown when two entry clauses are called on the same instance, e.g., calling
SelectandSelectDistincton the same builder instance.
SelectDistinct(ref SelectDistinctInterpolatedStringHandler)
Appends the SELECT DISTINCT clause and the interpolated string to the builder.
ISelectDistinctBuilder SelectDistinct(ref SelectDistinctInterpolatedStringHandler handler)Parameters
handlerSelectDistinctInterpolatedStringHandler-
The handler for the interpolated string.
Returns
- ISelectDistinctBuilder
-
The ISelectDistinctBuilder instance.
Exceptions
- InvalidOperationException
-
Thrown when two entry clauses are called on the same instance, e.g., calling
SelectDistinctandSelecton the same builder instance.