Interface IFetchBuilder
- Assembly
- Dapper.SimpleSqlBuilder.dll
An interface that defines the fetch builder type.
public interface IFetchBuilder : IFluentSqlBuilder, ISqlBuilder, IFluentBuilder
Implements
Methods
FetchNext(int)
Appends the FETCH NEXT
clause, the rows
, and the ROWS ONLY
clause to the builder.
IFluentSqlBuilder FetchNext(int rows)
Parameters
rows
int-
The number of rows to fetch.
Returns
- IFluentSqlBuilder
-
The IFluentSqlBuilder instance.