Dynamic query projection #4
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces dynamic query projection capabilities and refactors repository methods to support flexible filtering. The changes include updates to the
BooksControllerin the sample app to showcase handling query parameters for dynamic projections, modifications to repository interfaces and implementations to support generic filtering, and cleanup of unused methods.Dynamic Query Projection
src/BitzArt.CA.Core/Interfaces/IRepository.cs: Added new overloads for repository methods (GetAllAsync,GetPageAsync,FirstAsync,FirstOrDefaultAsync,SingleAsync,SingleOrDefaultAsync) to support filtering usingFunc<IQueryable<TEntity>, IQueryable>. [1] [2] [3] [4] [5] [6]src/BitzArt.CA.Persistence.EntityFrameworkCore/Repositories/AppDbRepository.cs: Implemented the new filtering methods in the repository, enabling dynamic query projection. [1] [2] [3] [4] [5] [6]Sample App
sample/SampleApp/Requests/Books.http: Added new query parameterpropertyto filter books by specific attributes, such astitle.sample/SampleApp/Services/BitzArt.CA.SampleApp.WebApi/Controllers/BooksController.cs: UpdatedGetAllAsyncmethod to accept apropertyquery parameter and dynamically project query results based on the specified property.