TanvirArjel.EFCore.GenericRepository 5.8.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TanvirArjel.EFCore.GenericRepository --version 5.8.0
NuGet\Install-Package TanvirArjel.EFCore.GenericRepository -Version 5.8.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TanvirArjel.EFCore.GenericRepository" Version="5.8.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TanvirArjel.EFCore.GenericRepository --version 5.8.0
#r "nuget: TanvirArjel.EFCore.GenericRepository, 5.8.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TanvirArjel.EFCore.GenericRepository as a Cake Addin
#addin nuget:?package=TanvirArjel.EFCore.GenericRepository&version=5.8.0

// Install TanvirArjel.EFCore.GenericRepository as a Cake Tool
#tool nuget:?package=TanvirArjel.EFCore.GenericRepository&version=5.8.0

EF Core Generic Repository

This library is a Generic Repository implementation for EF Core ORM which will remove developers' pain to write repository layer for each .NET Core and .NET project.

⭐ Giving a star

If you find this library useful, please don't forget to encouraging me to do such more stuffs by giving a star to this repository. Thank you.

🔥 What's new

Pagination Support:

PaginationSpecification<Employee> specification = new PaginationSpecification<Employee>();
specification.Conditions.Add(e => e.Name.Contains("Ta"));
specification.PageIndex = 1;
specification.PageSize = 10;

PaginatedList<EmployeeDto> paginatedList = await _repository.GetPaginatedListAsync(specification, e => new EmployeeDto
{
    Id = e.Id
    Name = e.Name,
    DepartmentName = e.DepartmentName
});

Free raw SQL support:

List<string> search = new List<string>() { "Tanvir", "Software" };
string sqlQuery = "Select EmployeeName, DepartmentName from Employee Where EmployeeName LIKE @p0 + '%' and DepartmentName LIKE @p1 + '%'";
List<EmployeeDto> items = await _repository.GetFromRawSqlAsync<EmployeeDto>(sqlQuery, search);

⚙️ This library includes 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.

  10. Pagination support.

  11. Free raw SQL query support both for complex type and primitive types.

✈️ How do I get started?

For full version (both query and command support), first install the latest version of TanvirArjel.EFCore.GenericRepository nuget package into your project as follows:

Package Manager Console:

Install-Package TanvirArjel.EFCore.GenericRepository

.NET CLI:

dotnet add package TanvirArjel.EFCore.GenericRepository

Then in the ConfirugeServices method of the Startup class:

public void ConfigureServices(IServiceCollection services)
{
    services.AddGenericRepository<YourDbContext>();
}

For query version only, first install the latest version of TanvirArjel.EFCore.QueryRepository nuget package into your project as follows:

Package Manager Console:

Install-Package TanvirArjel.EFCore.QueryRepository

.NET CLI:

dotnet add package TanvirArjel.EFCore.QueryRepository

Then in the ConfirugeServices method of the Startup class:

public void ConfigureServices(IServiceCollection services)
{
    services.AddQueryRepository<YourDbContext>();
}

🛠️ Usage: Query

public class EmployeeService
{
    // For query version, please use `IQueryRepository` instead of `IRepository`
    private readonly IRepository _repository;

    public EmployeeService(IRepository repository)
    {
        _repository = repository;
    }

    public async Task<Employee> GetEmployeeAsync(int employeeId)
    {
        Employee employee = await _repository.GetByIdAsync<Employee>(1);
        return employee;
    }
}

🛠️ Usage: Command

public class EmployeeService
{
    private readonly IRepository _repository;

    public EmployeeService(IRepository repository)
    {
        _repository = repository;
    }

    // Single database operation.
    public async Task<int> CreateAsync(Employee employee)
    {
        object[] primaryKeys = await _repository.InsertAsync(employee);
        return (int)primaryKeys[0];
    }

    // Multiple database operations.
    public async Task<int>> CreateAsync(Employee employee)
    {
       IDbContextTransaction transaction = await _repository.BeginTransactionAsync(IsolationLevel.ReadCommitted);
       try
       {
           object[] primaryKeys = await _repository.InsertAsync(employee);

           long employeeId = (long)primaryKeys[0];
           EmployeeHistory employeeHistory = new EmployeeHistory()
           {
               EmployeeId = employeeId,
               DepartmentId = employee.DepartmentId,
               EmployeeName = employee.EmployeeName
           };

           await _repository.InsertAsync(employeeHistory);

           await transaction.CommitAsync();

           return employeeId;
       }
       catch (Exception)
       {
           await transaction.RollbackAsync();
           throw;
       }
    }
}

For more detail documentaion, please visit Documentation Wiki

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on TanvirArjel.EFCore.GenericRepository:

Repository Stars
TanvirArjel/CleanArchitecture
This repository contains the implementation of domain-driven design and clear architecture in ASP.NET Core.
Version Downloads Last updated
6.0.4 865 1/13/2024
6.0.3 672 1/1/2024
6.0.2 1,048 11/20/2023
6.0.1 1,806 9/9/2023
6.0.0 9,343 11/9/2022
6.0.0-preview1 127 10/19/2022
5.9.1 5,141 8/21/2022
5.9.0 8,433 6/9/2022
5.8.1 483 6/7/2022
5.8.0 9,564 11/12/2021
5.7.0 614 10/6/2021
5.6.0 557 8/13/2021
5.5.0 3,844 4/7/2021
5.4.0 229 3/30/2021
5.3.0 360 3/27/2021
5.2.2 698 2/12/2021
5.2.1 386 2/8/2021
5.2.0 325 2/7/2021
5.1.0 460 1/14/2021
5.0.0 626 11/12/2020
3.1.2 1,582 5/20/2020
3.1.1 516 4/25/2020
3.1.0 488 4/23/2020
3.0.2 534 5/20/2020
3.0.1 474 4/25/2020
3.0.0 489 4/23/2020
2.0.2 527 5/20/2020
2.0.1 461 4/25/2020
2.0.0 453 4/23/2020

1. EF Core 6.0 support has been added.
2. ExistsByIdAsync method has been added.