TanvirArjel.EFCore.GenericRepository
3.1.1
See the version list below for details.
dotnet add package TanvirArjel.EFCore.GenericRepository --version 3.1.1
NuGet\Install-Package TanvirArjel.EFCore.GenericRepository -Version 3.1.1
<PackageReference Include="TanvirArjel.EFCore.GenericRepository" Version="3.1.1" />
paket add TanvirArjel.EFCore.GenericRepository --version 3.1.1
#r "nuget: TanvirArjel.EFCore.GenericRepository, 3.1.1"
// Install TanvirArjel.EFCore.GenericRepository as a Cake Addin
#addin nuget:?package=TanvirArjel.EFCore.GenericRepository&version=3.1.1
// Install TanvirArjel.EFCore.GenericRepository as a Cake Tool
#tool nuget:?package=TanvirArjel.EFCore.GenericRepository&version=3.1.1
How do I get started?
First, install the appropriate version of this NuGet package into your project as follows:
**For EF Core 2.x π*
Install-Package TanvirArjel.EFCore.GenericRepository -Version 2.0.1
**For EF Core 3.0 π*
Install-Package TanvirArjel.EFCore.GenericRepository -Version 3.0.1
**For EF Core >= 3.1 π*
Install-Package TanvirArjel.EFCore.GenericRepository -Version 3.1.1
Then in the ConfirugeServices
method of the Startup
class:
public void ConfigureServices(IServiceCollection services)
{
string connectionString = Configuration.GetConnectionString("RepositoryDbConnection");
services.AddDbContext<DemoDbContext>(option => option.UseSqlServer(connectionString));
services.AddGenericRepository<DemoDbContext>(); // Call it just after registering your DbConext.
}
Usage:
Now inject IUnitOfWork
interface in your relevant class constructor and use as follows:
public class EmployeeService
{
private readonly IUnitOfWork _unitOfWork;
public EmployeeService(IUnitOfWork unitOfWork)
{
_unitOfWork = unitOfWork;
}
public async Task<Employee> GetEmployeeAsync(int employeeId)
{
Employee employee = await _unitOfWork.Repository<Employee>().GetEntityByIdAsync(1);
return employee;
}
}
To see more details documentation, please visit GitHub Repository
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.EntityFrameworkCore.Relational (>= 3.1.0)
- System.Linq.Dynamic.Core (>= 1.0.19)
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.0 | 4,968 | 11/9/2022 |
6.0.0-preview1 | 90 | 10/19/2022 |
5.9.1 | 2,670 | 8/21/2022 |
5.9.0 | 5,383 | 6/9/2022 |
5.8.1 | 409 | 6/7/2022 |
5.8.0 | 7,478 | 11/12/2021 |
5.7.0 | 579 | 10/6/2021 |
5.6.0 | 510 | 8/13/2021 |
5.5.0 | 3,595 | 4/7/2021 |
5.4.0 | 195 | 3/30/2021 |
5.3.0 | 327 | 3/27/2021 |
5.2.2 | 627 | 2/12/2021 |
5.2.1 | 316 | 2/8/2021 |
5.2.0 | 280 | 2/7/2021 |
5.1.0 | 382 | 1/14/2021 |
5.0.0 | 538 | 11/12/2020 |
3.1.2 | 1,470 | 5/20/2020 |
3.1.1 | 433 | 4/25/2020 |
3.1.0 | 424 | 4/23/2020 |
3.0.2 | 459 | 5/20/2020 |
3.0.1 | 406 | 4/25/2020 |
3.0.0 | 424 | 4/23/2020 |
2.0.2 | 437 | 5/20/2020 |
2.0.1 | 386 | 4/25/2020 |
2.0.0 | 386 | 4/23/2020 |
The release contains the following bug fixes:
1. Entity projection to value type was not working due to the reference type constraint. It has been fixed.
2. XML comments were not showing on IntelliSense. It has been fixed.