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