Interface ILimitBuilder
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the limit builder type.
public interface ILimitBuilder : IFluentSqlBuilder, ISqlBuilder, IFluentBuilder
Implements
Methods
Limit(int)
Appends the LIMIT
clause and the rows
to the builder.
IOffsetBuilder Limit(int rows)
Parameters
rows
int-
The number of rows to fetch.
Returns
- IOffsetBuilder
-
The IOffsetBuilder instance.