Commit 79bef60
committed
Add async query methods and update versions
Version Updates
-- Updated `SearchesVer` to 0.8.6 and `ProblemsVer` to 1.0.0-preview-4.9 in `Directory.Build.props`.
Async Query Methods
-- Added `FirstAsync<TEntity, TFilter>` for retrieving the first entity with filter and sorting.
-- Added `FirstAsync<TEntity, TDto, TFilter>` for retrieving the first DTO with filter and sorting.
-- Added `ListAsync<TEntity, TFilter>` for retrieving a list of entities with filter and sorting.
-- Added `ListAsync<TEntity, TDto, TFilter>` for retrieving a list of DTOs with filter and sorting.
-- Added `SearchAsync<TEntity, TFilter>` for performing paged search returning entities.
-- Added `SearchAsync<TEntity, TDto, TFilter>` for performing paged search returning DTOs.
-- Included XML documentation for all new methods.
-- Implemented exception handling for sorting and general errors with logging.1 parent b79f418 commit 79bef60
File tree
2 files changed
+369
-2
lines changed- src
- RoyalCode.SmartSearch.AspNetCore/Internals
2 files changed
+369
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
0 commit comments