Skip to content

Commit 5a20427

Browse files
committed
Update README.md
1 parent 84fc15d commit 5a20427

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This extension adds the following 8 helpers:
1919
- GetList<Type>() - gets list of records all records from a table
2020
- GetList<Type>(anonymous object for where clause) - gets list of all records matching the where options
2121
- GetList<Type>(string for conditions) - gets list of all records matching the conditions
22-
- GetListPaged<Type>(string for conditions) - gets paged list of all records matching the conditions
22+
- GetListPaged<Type>(int pagenumber, int itemsperpage, string for conditions, string for order) - gets paged list of all records matching the conditions
2323
- Insert(entity) - Inserts a record and returns the new primary key
2424
- Update(entity) - Updates a record
2525
- Delete<Type>(id) - Deletes a record based on primary key
@@ -35,7 +35,7 @@ For projects targeting .NET 4.5 or later, the following 8 helpers exist for asyn
3535
- GetListAsync<Type>() - gets list of records all records from a table
3636
- GetListAsync<Type>(anonymous object for where clause) - gets list of all records matching the where options
3737
- GetListAsync<Type>(string for conditions) - gets list of all records matching the conditions
38-
- GetListPagedAsync<Type>(string for conditions) - gets paged list of all records matching the conditions
38+
- GetListPagedAsync<Type>(int pagenumber, int itemsperpage, string for conditions, string for order) - gets paged list of all records matching the conditions
3939
- InsertAsync(entity) - Inserts a record and returns the new primary key
4040
- UpdateAsync(entity) - Updates a record
4141
- DeleteAsync<Type>(id) - Deletes a record based on primary key

0 commit comments

Comments
 (0)