EasyDDD.Repository.EF 3.0.2

dotnet add package EasyDDD.Repository.EF --version 3.0.2
NuGet\Install-Package EasyDDD.Repository.EF -Version 3.0.2
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="EasyDDD.Repository.EF" Version="3.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyDDD.Repository.EF --version 3.0.2
#r "nuget: EasyDDD.Repository.EF, 3.0.2"
#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 EasyDDD.Repository.EF as a Cake Addin
#addin nuget:?package=EasyDDD.Repository.EF&version=3.0.2

// Install EasyDDD.Repository.EF as a Cake Tool
#tool nuget:?package=EasyDDD.Repository.EF&version=3.0.2
How to Use
  • Startup
 public void ConfigureServices(IServiceCollection services)
 {
     services.AddEasyDDD(typeof(EFContext).Assembly,typeof(DemoRepository).Assembly,typeof(DemoService).Assembly,typeof(IDemoRepository).Assembly,typeof(IDemoService).Assembly);
 }
 public void Configure( IApplicationBuilder app, IWebHostEnvironment env){
     app.UseEasyDDD();
 }
  • DbContext
public class EFContext : EF.UnitOfWork
{        
    public EFContext(DbContextOptions options):base(options){}
    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder){}
    protected override void OnModelCreating(ModelBuilder modelBuilder){}
}
or 
public class MongoContext : Mongo.UnitOfWork
{
    public static MongoClient client;
    public MongoContext() : base(ref client) {}
    protected override string DataBaseName => "Collection";
    protected override string ConnStr => "MongoDB";
}
or
public class RedisContext : Redis.UnitOfWork
{
    public static StackExchange.Redis.ConnectionMultiplexer redisServer;
    public RedisContext() : base(ref redisServer) { }
    protected override string Connstr => "redisconn";
}
  • Repository
public interface IDemoRepository:IEFBaseRepository<Demo,string>{}
public class DemoRepository :BaseRepository<Demo,string>,IDemoRepository
{  
    public DemoRepository(MongoContext context) : base(context) { }
}
  • Service
public interface IDemoService:IBaseService<Demo,string>{}
public class DemoService : BaseService<Demo, string>,IDemoService
{
    public DemoService(IDemoEFRepository repository) : base(repository) { }
}
  • Controller
public class ValuesController : ControllerBase
{
    private IDemoService service;
    public ValuesController(IDemoService service){
        this.service = service;
    }
    public void Get(){
        service.Find...
        service.Insert...
        service.Update...
        service.Delete...
    }
}
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 is compatible.  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 is compatible.  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 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. 
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

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.2 71 3/6/2024
3.0.0 424 11/29/2023
2.3.2 145 11/22/2023
2.2.0 297 10/7/2023
2.1.1 964 4/28/2023
2.1.0 573 3/10/2022
2.0.14 569 2/24/2022
2.0.12 468 2/14/2022
2.0.10 446 1/20/2022
2.0.9 438 1/14/2022
2.0.8 438 1/14/2022
2.0.6 449 1/14/2022
2.0.5 429 1/14/2022
2.0.4 834 12/1/2021
2.0.3 409 10/25/2021
2.0.2 422 10/20/2021
2.0.1 319 9/26/2021
2.0.0 317 8/9/2021
1.9.1 367 7/23/2021
1.9.0 310 7/23/2021
1.7.0 398 5/15/2021
1.6.7 472 1/11/2021
1.6.6 373 1/11/2021
1.6.5 380 1/4/2021
1.6.4 431 12/30/2020
1.6.3 454 12/17/2020
1.6.2 428 12/11/2020
1.6.1 420 12/10/2020
1.6.0 404 12/10/2020
1.5.10 399 11/17/2020
1.5.9 436 11/13/2020
1.5.8 426 11/13/2020
1.5.7 467 11/13/2020
1.5.6 484 11/13/2020
1.5.5 473 11/13/2020
1.5.4 501 11/6/2020
1.5.3 434 11/6/2020
1.5.2 426 11/6/2020
1.5.0 459 11/6/2020
1.4.0 433 11/5/2020
1.3.0 437 11/3/2020
1.1.0 541 5/8/2020