Hi!
On http://www.nettiers.com/Samples.aspx, on can read the follwoing code example:
//GetPagedl()
TList<Accounts> accountList =
accountsService.GetPaged("IsActive = 1 AND AccountName LIKE 'smi%'");
However, in the code I generated with a .netTiers quite recent version (SVN),
I cannot find a GetPaged method overload with only a where clause as argument.
The only GetPaged OverLoad I can find with a Where Clause has the following declaration:
public override TList<ClientActivite> GetPaged(string whereClause,string orderBy, int start, int pageLength, out int totalCount)
Cheers!
JF