EntityGuardian 2.0.0

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

// Install EntityGuardian as a Cake Tool
#tool nuget:?package=EntityGuardian&version=2.0.0

Entity Guardian

In your projects developed with EntityFramework, it keeps track of all the changes that take place in your database and records them wherever you want.

GitHub Workflow Status (with event) EntityGuardian Nuget EntityGuardian Nuget

It is very simple to use and ready in just 4 steps.

  1. Install EntityGuardian NuGet package from here.
PM> Install-Package EntityGuardian
  1. Add the EntityGuardianInterceptor interceptor.
builder.Services.AddDbContext<Your_DbContext>(
    (serviceProvider, options) =>
        options.AddInterceptors(
            serviceProvider.GetRequiredService<EntityGuardianInterceptor>()));
  1. Add and configure builder.Services.AddEntityGuardian().
builder.Services.AddEntityGuardian(
   "your_sql_server_connection_string",
    option =>
    {
         option.StorageType = StorageType.SqlServer;
         option.DataSynchronizationTimeout = 30;
         option.ClearDataOnStartup = false;
         option.RoutePrefix = "entity-guardian";
         option.EntityGuardianSchemaName = "EntityGuardian";
    });

StorageType The type of database where changes will be saved. Only Sql Server is supported for now.

DataSynchronizationTimeout The time in seconds that changes will be reflected. Default 30 seconds.

ClearDataOnStartup Determines the deletion of previous records since the project is Startup.

RoutePrefix Access link prefix for the dashboard. Default "entity-guardian".

EntityGuardianSchemaName Schema of tables belonging to EntityGuardian in the database. Default "EntityGuardian".

  1. Add app.UseEntityGuardian()
app.UseEntityGuardian();

Stand up your project, go to /entity-guardian and keep track of all changes.

Transactions

1

Transaction Details

2

Transaction Detail

3

Future planned developments.

  • Login page.
  • Multiple database support.

Give a star ⭐, fork and stay tuned.

Product Compatible and additional computed target framework versions.
.NET 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. 
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
2.0.0 491 2/27/2024
1.0.0.2 196 1/22/2024
1.0.0.1 76 1/22/2024
1.0.0 332 12/1/2023
1.0.0-beta.2 66 11/30/2023
1.0.0-beta.1 61 11/28/2023
1.0.0-beta 103 11/25/2023
1.0.0-alpha.4.2 82 11/23/2023
1.0.0-alpha.4.1 83 11/22/2023
1.0.0-alpha.4 88 11/22/2023
1.0.0-alpha.3 87 11/18/2023
1.0.0-alpha.2 122 10/28/2023
1.0.0-alpha.1 83 10/28/2023
1.0.0-alpha 156 10/26/2023