EasyDDD.Core 3.0.2

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

// Install EasyDDD.Core as a Cake Tool
#tool nuget:?package=EasyDDD.Core&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 (3)

Showing the top 3 NuGet packages that depend on EasyDDD.Core:

Package Downloads
EasyDDD.Repository.Mongo

领域驱动仓储mongodb实现

EasyDDD.Repository.EF

领域驱动仓储ef实现

EasyDDD.Repository.Redis

领域驱动仓储redis实现

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.2 138 3/6/2024
3.0.1 408 12/4/2023
2.3.3 124 11/23/2023
2.3.2 238 11/22/2023
2.2.1 216 10/10/2023
2.1.1 1,189 4/28/2023
2.1.0 1,521 3/10/2022
2.0.15 539 2/25/2022
2.0.12 1,407 2/14/2022
2.0.10 1,335 1/20/2022
2.0.9 1,097 1/14/2022
2.0.8 686 1/14/2022
2.0.7 401 1/14/2022
2.0.4 2,398 12/1/2021
2.0.3 920 10/25/2021
2.0.1 1,073 9/26/2021
2.0.0 845 8/9/2021
1.9.1 939 7/23/2021
1.9.0 853 7/23/2021
1.8.0 330 7/23/2021
1.7.0 843 5/15/2021
1.6.7 943 1/11/2021
1.6.6 848 1/11/2021
1.6.5 537 1/5/2021
1.6.4 1,038 12/30/2020
1.6.3 928 12/17/2020
1.6.2 941 12/11/2020
1.6.1 904 12/10/2020
1.6.0 880 12/10/2020
1.5.10 919 11/17/2020
1.5.9 968 11/13/2020
1.5.8 942 11/13/2020
1.5.7 960 11/13/2020
1.5.6 977 11/13/2020
1.5.5 965 11/13/2020
1.5.4 953 11/6/2020
1.5.3 935 11/6/2020
1.5.2 1,022 11/6/2020
1.5.1 421 11/6/2020
1.5.0 1,020 11/6/2020
1.4.0 1,031 11/5/2020
1.2.1 962 11/3/2020
1.1.0 1,137 5/8/2020