Info
Version: | 6.0.4 |
Author(s): | TanvirArjel |
Last Update: | Saturday, January 13, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/TanvirArjel/EFCore.GenericRepository |
NuGet Url: | https://www.nuget.org/packages/TanvirArjel.EFCore.GenericRepository |
Install
Install-Package TanvirArjel.EFCore.GenericRepository
dotnet add package TanvirArjel.EFCore.GenericRepository
paket add TanvirArjel.EFCore.GenericRepository
TanvirArjel.EFCore.GenericRepository Download (Unzip the "nupkg" after downloading)
Dependencies
net5.0
- Microsoft.EntityFrameworkCore.Relational(>= 5.0.2)
- System.Linq.Dynamic.Core(>= 1.2.7)
- Microsoft.EntityFrameworkCore.Relational(>= 3.1.11)
- System.Linq.Dynamic.Core(>= 1.2.7)
- Microsoft.EntityFrameworkCore.Relational(>= 5.0.2)
- System.Linq.Dynamic.Core(>= 1.2.7)
Tags
This library includes the following notable features:
1.
This library can be run on any .NET Core or .NET application which has .NET Core 3.1, .NET Standard 2.1 and .NET 5.0+ support.
2. It’s providing the Generic Repository with database transaction support.
3. It has all the required methods to query your data in whatever way you want without getting IQueryable<T> from the repository.
4. It also has Specification<T> pattern support so that you can build your query dynamically i.e.
differed query building.
5. It also has database-level projection support for your query.
6. It also has support to run raw SQL command against your relational database.
7. It also has support to choose whether you would like to track your query entity/entities or not.
8.
It also has support to reset your EF Core DbContext state whenever you really needed.
9. Most importantly, it has full Unit Testing support. Most importantly, it facilitates the writing unit test with mocking.
10. It also has pagination support.
11.
Free raw SQL query support both for complex type and primitive types.