DB Context Logger independent of the database driver.
We decided to use MySql in our company for our database provider. Once we needed to log anything that changed at the entity we cannot use some stuff like temporal table or something else. So we developed a similar framework to log changes to the entity the easiest way.
This framework is an easy way to log any entity changes by the dbContext whether you added, modified or deleted an entity.
Your project should be structured according to the repository pattern. Your repository just needs to inherit from the base LogRepositoryBase
.
Once you configured everthing its very easy to log your changes.
The log table has this structure:
Syntax | Description |
---|---|
Id | generated PK |
Context | which entity has changed |
ContextId | if the changed entity got a id, otherwise it will be null |
Property | the property name of the changed entity |
PreviousValue | the previous value of the changed property |
CurrentValue | the current value of the changed property |
ChangedAt | when did it change |
ChangedBy | who changed it |
LogType | modifed/added/deleted |
LogTypeBy | user/system |
Revision | In which "step" changed anything |
dotnet add package DatabaseEasyLog --version 1.0.0
PM> NuGet\Install-Package DatabaseEasyLog -Version 1.0.0
<PackageReference Include="DatabaseEasyLog" Version="1.0.0"/>
The repository should inherit by the class LogRepositoryBase
. The baseclass contains two Methods:
SaveChangesWithLog(Guid? userId, Cancellationtoken token)
This method will save any changes at your entity which are tracked by the ef core changetracker. The userId should be this one who changed the entity. if there is no userId given, the log entry will saved it as a system changed event.
SaveChangesWithLog(Guid? userId, IReadOnlyList<strings> propertiesToIgnore, Cancellationtoken token)
This method is similar to the first one but you can give the method a list of property names which will not be logged from your entity.
First things first. Before we can use the framework, we have to create a migration-script and configure the entity model-builder. Your migration-script and model-builder which you have to created should look like this:
public void Configure(EntityTypeBuilder<LogEntry> builder)
{
builder.ToTable("Logs");
}
You have to use the entity LogEntry
migrationBuilder.CreateTable(
name: "Logs",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "utf8mb4_unicode_ci"),
ContextId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "utf8mb4_unicode_ci"),
Context = table.Column<string>(type: "longtext", nullable: false, collation: "utf8mb4_unicode_ci").Annotation("MySql:CharSet", "utf8mb4"),
Property = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: false, collation: "utf8mb4_unicode_ci").Annotation("MySql:CharSet", "utf8mb4"),
PreviousValue = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: true, collation: "utf8mb4_unicode_ci").Annotation("MySql:CharSet", "utf8mb4"),
CurrentValue = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: true, collation: "utf8mb4_unicode_ci").Annotation("MySql:CharSet", "utf8mb4"),
ChangedAt = table.Column<DateTime>(type: "datetime(6)", nullable: false),
ChangedBy = table.Column<Guid>(type: "char(36)", nullable: true, collation: "utf8mb4_unicode_ci"),
LogType = table.Column<string>(type: "varchar(10)", maxLength: 255, nullable: true, collation: "utf8mb4_unicode_ci") .Annotation("MySql:CharSet", "utf8mb4"),
LogTypeBy = table.Column<string>(type: "varchar(10)", maxLength: 255, nullable: true, collation: "utf8mb4_unicode_ci") .Annotation("MySql:CharSet", "utf8mb4"),
Revision = table.Column<int>(type: "int", maxLength: 10, nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Logs", x => x.Id);
})
.Annotation("MySql:CharSet", "utf8mb4")
.Annotation("Relational:Collation", "utf8mb4_unicode_ci");
You can use booth methods if your repository inherits the class LogRepositoryBase.
Once you create a LogEntry, your table should look like this:
Licence MIT
Thanks to sami for the support
visit our company traperto