EngineBay.Persistence
5.0.5
See the version list below for details.
dotnet add package EngineBay.Persistence --version 5.0.5
NuGet\Install-Package EngineBay.Persistence -Version 5.0.5
<PackageReference Include="EngineBay.Persistence" Version="5.0.5" />
paket add EngineBay.Persistence --version 5.0.5
#r "nuget: EngineBay.Persistence, 5.0.5"
// Install EngineBay.Persistence as a Cake Addin #addin nuget:?package=EngineBay.Persistence&version=5.0.5 // Install EngineBay.Persistence as a Cake Tool #tool nuget:?package=EngineBay.Persistence&version=5.0.5
EngineBay.Persistence
Persistence module for EngineBay published to EngineBay.Persistence on NuGet.
About
The persistence module provides structures to configure and register any database connections that modules in your application might need.
The DbContexts from this module should be inherited by the DbContexts of any module that needs to use a database. To support Command and Query Responsibility Segregation (CQRS), a read-optimised and a write-optimised DbContext are provided - though a general-purpose one is also provided.
The TimestampInterceptor will add creation and modification timestamps to any model that implements EngineBay.Core's BaseModel.
The AuditableModel abstract class will provide some standard fields for tracking which users make changes to any inheriting models. If changes are saved on a DbContext that uses EngineBay.Auditing's AuditInterceptor, then audit entries will automatically be created for any models that implement AuditableModel.
ApplicationUser is a simple representation of a user for the application. It has a DbSet provided in ModuleDbContext so that any module inheriting these contexts will have access to the application users. ApplicationUser implements AuditableModel.
Usage
To use this module in your own, you will need to create three DbContexts - generic, read, and write - so that they can be registered. With the currently preferred structure, they will need to inherit from the Persistence DbContexts in a chain like shown in this diagram (using EngineBay.Blueprints module as an example):
%%{init: {"flowchart": {"htmlLabels": false}} }%%
flowchart BT
BlueprintsWriteDbContext --> BlueprintsQueryDbContext
BlueprintsQueryDbContext --> BlueprintsDbContext
BlueprintsDbContext --> ModuleWriteDbContext
ModuleWriteDbContext --> ModuleQueryDbContext
ModuleQueryDbContext --> ModuleDbContext
click ModuleDbContext "https://github.com/engine-bay/persistence/blob/feature/readmes/EngineBay.Persistence/DbContexts/ModuleDbContext.cs" _blank
click ModuleQueryDbContext "https://github.com/engine-bay/persistence/blob/feature/readmes/EngineBay.Persistence/DbContexts/ModuleQueryDbContext.cs" _blank
click ModuleWriteDbContext "https://github.com/engine-bay/persistence/blob/feature/readmes/EngineBay.Persistence/DbContexts/ModuleWriteDbContext.cs" _blank
click BlueprintsDbContext "https://github.com/engine-bay/blueprints/blob/main/EngineBay.Blueprints/Persistence/BlueprintsDbContext.cs" _blank
click BlueprintsQueryDbContext "https://github.com/engine-bay/blueprints/blob/main/EngineBay.Blueprints/Persistence/BlueprintsQueryDbContext.cs" _blank
click BlueprintsWriteDbContext "https://github.com/engine-bay/blueprints/blob/main/EngineBay.Blueprints/Persistence/BlueprintsWriteDbContext.cs" _blank
You should register your DbSets only in your generic DbContext:
namespace EngineBay.Blueprints
{
using EngineBay.Persistence;
using Microsoft.EntityFrameworkCore;
public class BlueprintsDbContext : ModuleWriteDbContext
{
public BlueprintsDbContext(DbContextOptions<ModuleWriteDbContext> options)
: base(options)
{
}
public DbSet<Workbook> Workbooks { get; set; } = null!;
public DbSet<Blueprint> Blueprints { get; set; } = null!;
// More DbSets...
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
Workbook.CreateDataAnnotations(modelBuilder);
Blueprint.CreateDataAnnotations(modelBuilder);
// More annotations...
base.OnModelCreating(modelBuilder);
}
}
}
If you desire extra functionality for any of the contexts, such as an auditing interceptor from EngineBay.Auditing, you can access the options builder with the OnConfiguring method, like this:
namespace EngineBay.Blueprints
{
using EngineBay.Auditing;
using EngineBay.Persistence;
using Microsoft.EntityFrameworkCore;
public class BlueprintsWriteDbContext : BlueprintsQueryDbContext
{
private readonly IAuditingInterceptor auditingInterceptor;
public BlueprintsWriteDbContext(DbContextOptions<ModuleWriteDbContext> options, IAuditingInterceptor auditingInterceptor)
: base(options)
{
this.auditingInterceptor = auditingInterceptor;
}
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
if (optionsBuilder is null)
{
throw new ArgumentNullException(nameof(optionsBuilder));
}
optionsBuilder.AddInterceptors(this.auditingInterceptor);
base.OnConfiguring(optionsBuilder);
}
}
}
When you've created your module's DbContexts, you will need to create a CQRSDatabaseConfiguration object in your module's setup class that will register the contexts. For example:
namespace EngineBay.Blueprints
{
using EngineBay.Core;
using EngineBay.Persistence;
using FluentValidation;
public class BlueprintsModule : BaseModule
{
public override IServiceCollection RegisterModule(IServiceCollection services, IConfiguration configuration)
{
// Other services registration...
var databaseConfiguration = new CQRSDatabaseConfiguration<BlueprintsDbContext, BlueprintsQueryDbContext, BlueprintsWriteDbContext>();
databaseConfiguration.RegisterDatabases(services);
return services;
}
// Other setup methods...
}
}
You will then be able to use your DbContexts freely, as you might any other DbContext, though do try to keep CQRS principals in mind.
Registration
This module cannot run on its own. You will need to register it in your application to use its functionality. See the Demo API registration guide.
Note that you do not need to register the Persistence DbContexts. The ApplicationUsers DbSet that these contexts provide will be available to any other module's DbContexts by virtue of inheritance.
Environment Variables
See the Documentation Portal.
Dependencies
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 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. |
-
net7.0
- EngineBay.Core (>= 7.0.0)
- EngineBay.Logging (>= 2.0.3)
- Humanizer.Core (>= 2.14.1)
- LinqKit.Microsoft.EntityFrameworkCore (>= 7.1.4)
- Microsoft.EntityFrameworkCore (>= 7.0.11)
- Microsoft.EntityFrameworkCore.InMemory (>= 7.0.11)
- Microsoft.EntityFrameworkCore.Sqlite (>= 7.0.11)
- Microsoft.EntityFrameworkCore.SqlServer (>= 7.0.11)
- Newtonsoft.Json (>= 13.0.3)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 7.0.11)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on EngineBay.Persistence:
Package | Downloads |
---|---|
EngineBay.Blueprints
Package Description |
|
EngineBay.Authentication
Package Description |
|
EngineBay.Auditing
Package Description |
|
EngineBay.DatabaseManagement
Package Description |
|
EngineBay.DemoModule
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 496 | 2/12/2024 |
7.0.2 | 330 | 1/16/2024 |
7.0.1 | 174 | 1/10/2024 |
7.0.0 | 238 | 1/9/2024 |
6.0.8 | 137 | 1/3/2024 |
6.0.7 | 107 | 1/3/2024 |
6.0.6 | 114 | 1/3/2024 |
6.0.5 | 138 | 12/21/2023 |
6.0.4 | 497 | 12/20/2023 |
6.0.3 | 606 | 12/6/2023 |
6.0.2 | 137 | 11/29/2023 |
6.0.1 | 368 | 11/23/2023 |
6.0.0 | 177 | 11/23/2023 |
5.0.7 | 126 | 11/20/2023 |
5.0.6 | 129 | 11/17/2023 |
5.0.5 | 432 | 11/15/2023 |
5.0.4 | 127 | 11/9/2023 |
5.0.3 | 116 | 11/9/2023 |
5.0.2 | 116 | 11/9/2023 |
5.0.1 | 290 | 11/2/2023 |
5.0.0 | 673 | 10/31/2023 |
4.2.1 | 123 | 10/31/2023 |
4.2.0 | 443 | 10/24/2023 |
4.1.4 | 144 | 10/11/2023 |
4.1.3 | 126 | 10/10/2023 |
4.1.2 | 138 | 10/9/2023 |
4.1.1 | 249 | 9/28/2023 |
4.1.0 | 478 | 9/28/2023 |
4.0.0 | 272 | 9/28/2023 |
3.4.12 | 136 | 9/25/2023 |
3.4.11 | 132 | 9/25/2023 |
3.4.10 | 114 | 9/25/2023 |
3.4.9 | 127 | 9/24/2023 |
3.4.8 | 364 | 9/24/2023 |
3.4.7 | 133 | 9/24/2023 |
3.4.6 | 211 | 9/23/2023 |
3.4.5 | 126 | 9/23/2023 |
3.4.4 | 135 | 9/23/2023 |
3.4.3 | 115 | 9/22/2023 |
3.4.2 | 130 | 9/21/2023 |
3.4.1 | 262 | 6/2/2023 |
3.4.0 | 146 | 6/1/2023 |
3.3.18 | 151 | 5/31/2023 |
3.3.17 | 145 | 5/31/2023 |
3.3.16 | 148 | 5/31/2023 |
3.3.15 | 625 | 4/25/2023 |
3.3.14 | 177 | 4/24/2023 |
3.3.13 | 262 | 4/21/2023 |
3.3.12 | 171 | 4/17/2023 |
3.3.11 | 177 | 4/17/2023 |
3.3.10 | 169 | 4/17/2023 |
3.3.9 | 248 | 4/12/2023 |
3.3.8 | 181 | 4/12/2023 |
3.3.7 | 185 | 4/8/2023 |
3.3.6 | 633 | 4/3/2023 |
3.3.5 | 190 | 4/3/2023 |
3.3.4 | 279 | 4/2/2023 |
3.3.3 | 211 | 4/1/2023 |
3.3.2 | 209 | 4/1/2023 |
3.3.1 | 199 | 4/1/2023 |
3.3.0 | 1,182 | 3/29/2023 |
3.2.5 | 540 | 3/27/2023 |
3.2.4 | 286 | 3/26/2023 |
3.2.3 | 206 | 3/26/2023 |
3.2.2 | 208 | 3/26/2023 |
3.2.1 | 196 | 3/26/2023 |
3.2.0 | 901 | 3/26/2023 |
3.1.0 | 475 | 3/26/2023 |
3.0.1 | 211 | 3/25/2023 |
3.0.0 | 1,271 | 3/25/2023 |
2.5.2 | 1,083 | 3/24/2023 |
2.5.1 | 296 | 3/24/2023 |
2.5.0 | 302 | 3/23/2023 |
2.4.0 | 216 | 3/23/2023 |
2.3.1 | 222 | 3/23/2023 |
2.3.0 | 303 | 3/23/2023 |
2.2.0 | 203 | 3/22/2023 |
2.1.2 | 327 | 3/22/2023 |
2.1.1 | 390 | 3/22/2023 |
2.0.1 | 303 | 3/21/2023 |
2.0.0 | 252 | 3/21/2023 |
1.3.0 | 293 | 3/21/2023 |
1.2.0 | 265 | 3/21/2023 |
1.1.1 | 304 | 3/20/2023 |
1.1.0 | 281 | 3/20/2023 |
1.0.3 | 209 | 3/20/2023 |
1.0.2 | 237 | 3/19/2023 |
1.0.1 | 222 | 3/19/2023 |
1.0.0 | 222 | 3/19/2023 |
0.10.2 | 238 | 3/19/2023 |
0.10.1 | 196 | 3/19/2023 |
0.10.0 | 208 | 3/19/2023 |
0.9.0 | 220 | 3/19/2023 |
0.8.0 | 226 | 3/19/2023 |
0.7.3 | 221 | 3/19/2023 |
0.7.2 | 214 | 3/19/2023 |
0.7.1 | 214 | 3/19/2023 |
0.7.0 | 417 | 3/19/2023 |
0.6.0 | 271 | 3/19/2023 |
0.5.0 | 305 | 3/18/2023 |
0.4.1 | 220 | 3/18/2023 |
0.4.0 | 277 | 3/18/2023 |
0.3.0 | 229 | 3/18/2023 |
0.2.1 | 226 | 3/18/2023 |
0.2.0 | 230 | 3/18/2023 |
0.1.0 | 234 | 3/17/2023 |
0.0.1 | 239 | 3/17/2023 |