EasyDDD.Repository.Redis 3.0.2

dotnet add package EasyDDD.Repository.Redis --version 3.0.2
NuGet\Install-Package EasyDDD.Repository.Redis -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.Redis" 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.Redis --version 3.0.2
#r "nuget: EasyDDD.Repository.Redis, 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.Redis as a Cake Addin
#addin nuget:?package=EasyDDD.Repository.Redis&version=3.0.2

// Install EasyDDD.Repository.Redis as a Cake Tool
#tool nuget:?package=EasyDDD.Repository.Redis&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 85 3/6/2024
3.0.1 887 12/4/2023
3.0.0 129 11/29/2023
2.3.3 129 11/22/2023
2.2.0 274 10/7/2023
2.1.2 924 5/4/2023
2.1.0 523 3/10/2022
2.0.14 547 2/24/2022
2.0.12 481 2/14/2022
2.0.10 413 1/20/2022
2.0.4 833 12/1/2021
2.0.3 371 10/25/2021
2.0.1 340 9/26/2021
2.0.0 341 8/9/2021
1.9.1 332 7/23/2021
1.9.0 307 7/23/2021
1.7.0 378 5/15/2021
1.6.7 420 1/11/2021
1.6.6 353 1/11/2021
1.6.5 406 1/5/2021
1.6.4 415 12/30/2020
1.6.3 403 12/17/2020
1.6.2 441 12/11/2020
1.6.1 389 12/10/2020
1.6.0 431 12/10/2020
1.5.10 397 11/17/2020
1.5.9 394 11/13/2020
1.5.8 447 11/13/2020
1.5.7 427 11/13/2020
1.5.6 437 11/13/2020
1.5.5 439 11/13/2020
1.5.4 469 11/6/2020
1.5.3 396 11/6/2020
1.5.2 417 11/6/2020
1.5.0 448 11/6/2020
1.4.0 445 11/5/2020
1.3.0 427 11/3/2020
1.1.0 490 5/8/2020