Griffin.Data.Mapper.CommandBuilders.CommandBuilder.Paging C# (CSharp) Method

Paging() public method

Modify SQL statement so that the result is paged.
public Paging ( IDbCommand command, int pageNumber, int pageSize ) : void
command IDbCommand Command to modify
pageNumber int One based index
pageSize int Items per page.
return void
        public virtual void Paging(IDbCommand command, int pageNumber, int pageSize)
        {
            throw new NotSupportedException();
        }
    }