Skip to content

Latest commit

 

History

20 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RzR.DataVigil - Overview

.NET Standard 2.1 EF Core 5+

Name Details
RzR.DataVigil.Abstractions NuGet Version Nuget Downloads
RzR.DataVigil.Core NuGet Version Nuget Downloads
RzR.DataVigil.AspNetCore NuGet Version Nuget Downloads
RzR.DataVigil.EFCore NuGet Version Nuget Downloads
RzR.DataVigil.Storage.File NuGet Version Nuget Downloads
RzR.DataVigil.Storage.EfPostgreSql NuGet Version Nuget Downloads
RzR.DataVigil.Storage.EfSqlServer NuGet Version Nuget Downloads
RzR.DataVigil.Storage.EfMongoDb NuGet Version Nuget Downloads

I needed a way to track data changes in EF Core apps without touching every repository or service. So I built this.

RzR.DataVigil hooks into EF Core interceptors and records property-level diffs on Create, Update, Delete (and optionally Read). It tags each audit record with the user, IP, correlation ID, trace ID. You get GDPR field-level controls too - masking, hashing, anonymization - both on write and on read. Supports SQL Server, PostgreSQL, MongoDB, or just flat JSON files for storage.


Table of Contents


Features

  • EF Core interceptor-based, so your entities don't need any changes
  • Tracks Create, Update, Delete at the property level (old value vs new value)
  • Read auditing too, if you want it - pulls table/column/ID info from executed SQL
  • GDPR: mask, hash, anonymize, exclude, or write your own transform per field
  • Retrieval access control by role or claim
  • Ships with SQL Server, PostgreSQL, MongoDB, and file (JSON) storage providers. Or implement IAuditStore yourself
  • ASP.NET Core: grabs user + correlation IDs from HttpContext automatically. Console/worker apps: use AuditScopeContext instead
  • Built-in retention service (runs daily, deletes old records)
  • AnonymizeByUserAsync() for right-to-erasure (GDPR Art. 17)
  • Opt entities in/out with IAuditable, or exclude globally

Architecture

┌───────────────────────────────────────────────────────────┐
│                    Your Application                       │
│  DbContext (SaveChanges) ──► EF Core Interceptors         │
└─────────────┬───────────────────────────┬─────────────────┘
              │                           │
              ▼                           ▼
┌─────────────────────────┐     ┌───────────────────────────┐
│     Audit Pipeline      │     │   User / Source / Corr.   │
│  (enrichment + GDPR)    │ ◄── │       Resolvers           │
└─────────────┬───────────┘     └───────────────────────────┘
              │
              ▼
┌───────────────────────────────────────────────────────────┐
│                    IAuditStore                            │
│    ┌───────────┐ ┌──────────┐ ┌─────────┐ ┌───────────┐   │
│    │ SQL Server│ │PostgreSQL│ │ MongoDB │ │   File    │   │
│    └───────────┘ └──────────┘ └─────────┘ └───────────┘   │
└───────────────────────────────────────────────────────────┘

Package Dependency Graph

Abstractions ◄── Core ◄── AspNetCore
                  ▲
                  ├── EFCore
                  │     ▲
                  │     ├── Storage.EfSqlServer
                  │     ├── Storage.EfPostgreSql
                  │     └── Storage.EfMongoDb
                  │
                  └── Storage.File

Quick Start

First, mark which entities should be audited:

using RzR.DataVigil.Abstractions.Contracts;

public class AbbDbContext : DbContext, IAuditableContext
{
	
}

public class Order : IAuditable
{
    public Guid Id { get; set; }
    public string CustomerName { get; set; }
    public decimal Total { get; set; }
}

Then register everything in DI:

// Program.cs or Startup.cs
services.AddAuditTrail(options =>
{
    options.EfCore.Intercept<AppDbContext>();
    options.Storage.UseSqlServer(connectionString);
})
.Services
.AddAuditTrailEfCore()
.AddAuditTrailAspNetCore();

services.AddAuditTrailSqlServer();

And wire the interceptors into your DbContext registration:

services.AddDbContext<AppDbContext>((sp, opts) =>
{
    opts.UseSqlServer(connectionString);
    opts.AddAuditInterceptors(sp);
});

Any SaveChanges on entities implementing IAuditable will be captured from now on.


Installation

Grab the right packages depending on your storage:

SQL Server

RzR.DataVigil.Core
RzR.DataVigil.EFCore
RzR.DataVigil.Storage.EfSqlServer
RzR.DataVigil.AspNetCore          # for web apps

PostgreSQL

RzR.DataVigil.Core
RzR.DataVigil.EFCore
RzR.DataVigil.Storage.EfPostgreSql
RzR.DataVigil.AspNetCore

MongoDB

RzR.DataVigil.Core
RzR.DataVigil.EFCore
RzR.DataVigil.Storage.EfMongoDb
RzR.DataVigil.AspNetCore

File (JSON)

RzR.DataVigil.Core
RzR.DataVigil.Storage.File

Configuration

Basic Setup

services.AddAuditTrail(options =>
{
    // EF Core interception
    options.EfCore.Intercept<AppDbContext>();

    // Storage backend (pick one)
    options.Storage.UseSqlServer(connectionString);
    options.Storage.Schema = "audit"; // default: "audit"
    options.Storage.WithRetention(90); // auto-purge after 90 days

    // GDPR policies (optional)
    options.Gdpr.ForEntity<Customer>(e =>
    {
        e.MaskOnStorage(c => c.Email);
        e.AnonymizeOnRetrieval(c => c.Ssn, a => a.AllowRoles("Admin"));
    });

    // Global exclusions (optional)
    options.Exclude<MigrationHistory>();

    // Custom resolvers (optional)
    options.UseUserResolver<MyUserResolver>();
    options.UseSourceResolver<MySourceResolver>();
});

EF Core Interception

options.EfCore
    .Intercept<AppDbContext>() // register which DbContexts to audit
    .IncludeReads() // audit SELECT queries (off by default)
    .IncludeReadProperties() // capture column names in read entries

Storage Providers

// SQL Server
options.Storage.UseSqlServer("Server=...;Database=AuditDb;...");

// PostgreSQL
options.Storage.UsePostgreSql("Host=...;Database=AuditDb;...");

// MongoDB
options.Storage.UseMongoDb("mongodb://localhost:27017", "AuditDb");

// File (JSON, one file per day)
options.Storage.UseFile(@"C:\AuditLogs");

You also need to register the provider in DI:

// Pick the matching one:
services.AddAuditTrailSqlServer();
services.AddAuditTrailPostgreSqlServer();
services.AddAuditTrailMongoDb();
services.AddAuditTrailFileStorage();

SQL Server and PostgreSQL need their migrations applied:

app.ApplicationServices.MigrateAuditSqlServerDb();
// or
app.ApplicationServices.MigrateAuditPostgreSqlDb();

ASP.NET Core Integration

services.AddAuditTrailAspNetCore();

That call registers two things: AspNetCoreUserResolver which grabs user info from HttpContext, and AspNetCoreCorrelationProvider which looks for X-Correlation-Id or X-Request-Id headers (falls back to Activity.Current if neither exists).

Using read auditing? You'll also want the flush middleware - otherwise buffered read entries won't get persisted:

app.UseAuditReadFlush();

GDPR Policies

See the dedicated GDPR Compliance section below.

Data Retention

options.Storage.WithRetention(90); // purge entries older than 90 days

// Register the background service
services.AddAuditRetentionService();

The retention service purges once at host startup and then every 24h, calling IAuditStore.PurgeBeforeAsync() to clean up.


How It Works

CUD Auditing (Create/Update/Delete)

The interceptor (AuditSaveChangesInterceptor) works in two phases.

On SavingChanges/SavingChangesAsync it walks the ChangeTracker, picks up Added/Modified/Deleted entries that implement IAuditable, and builds an AuditTransaction - one AuditEntry per changed entity, with property-level diffs inside. Collection has to happen here, because EF resets EntityState and refreshes original values once the write completes.

The transaction is then held until SavedChanges/SavedChangesAsync, after the write has actually succeeded. Only then are database-generated keys (int IDENTITY, PostgreSQL serial) real rather than EF's temporary placeholders, so they are patched into the record before the pipeline attaches user/source/correlation data, runs GDPR storage rules, and writes to IAuditStore.SaveAsync().

A SaveChanges call that throws produces no audit record - the collected transaction is discarded. An audit trail should describe what happened, not what was attempted.

Most stores write to independent storage and leave the audited context alone. A store that instead persists through that same context - a transactional outbox - appends its row there and relies on the context being saved. Since it runs after the business write, the interceptor flushes those writes for it. That flush is covered by your transaction when you opened one, and is a separate transaction when you did not, so own the transaction if the audit row must commit atomically with the change it describes.

Read auditing is not covered by that flush. IncludeReads() records through AuditCommandInterceptor, which fires mid-query with the connection still busy and has no save of its own, so a store persisting through the audited context receives Read transactions but never gets them committed. Create, Update and Delete are unaffected. If you enable IncludeReads(), use a store that writes to independent storage.

The DbContext must implement IAuditableContext. Without it the interceptor returns before collecting anything, no matter how the entities are marked.

Here's what gets captured per property:

Action OldValue NewValue
Create null New value
Update Previous value Current value (changed props only)
Delete Previous value null

Read Auditing

Different approach depending on the database. SQL Server and PostgreSQL use AuditCommandInterceptor - it parses the SQL that EF generates to figure out which tables/columns/IDs were queried. MongoDB uses AuditMaterializationInterceptor instead, since there's no SQL to parse.

Either way, read entries pile up in AuditReadCollector during the request. They get flushed when the request ends (via UseAuditReadFlush()) or you can flush manually.

Audit Data Model

AuditTransaction (1)
├── Id                  : Guid
├── Timestamp           : DateTimeOffset
├── UserId              : string
├── UserName            : string
├── IpAddress           : string
├── CorrelationId       : string
├── TraceId             : string
├── Source              : string
├── GdprState           : GdprStorageState
├── Metadata            : Dictionary<string, string>
│
└── Entries (*)
    ├── Id              : Guid
    ├── Action          : Create | Read | Update | Delete
    ├── EntityName      : string
    ├── EntityId        : string
    ├── EntityTypeName  : string (CLR FullName)
    │
    └── Properties (*)
        ├── PropertyName  : string
        ├── PropertyType  : string
        ├── OldValue      : string
        └── NewValue      : string

Database schema (SQL Server / PostgreSQL):

Table Schema Key Indexes
AuditTransactions audit Timestamp, UserId, CorrelationId
AuditEntries audit TransactionId, EntityName
AuditEntryProperties audit AuditEntryId (shadow FK)

User & Correlation Enrichment

Each transaction gets context data attached. The source differs based on your hosting:

Field ASP.NET Core Console/Worker
UserId NameIdentifier or sub claim AuditScopeContext.SetUser() or Thread.CurrentPrincipal
UserName Name claim Same fallback chain
IpAddress RemoteIpAddress Manual via scope context
CorrelationId X-Correlation-Id > X-Request-Id > Activity.Current.Id Activity.Current.Id
TraceId HttpContext.TraceIdentifier Activity.Current.TraceId
Source Custom IAuditSourceResolver (default: "Unknown") Same

Every transaction also records how that actor was determined, in AuditTransaction.Metadata under the reserved key __datavigil.user.source:

Value Meaning
ScopeContext Set explicitly via IAuditScopeContext.SetUser()
HttpContext Taken from the authenticated HttpContext.User
ThreadPrincipal Taken from Thread.CurrentPrincipal
Anonymous Resolution succeeded and there genuinely was no user
Unresolved Resolution failed - the absence of a user is not evidence the action was anonymous
Unspecified A resolver returned a real user but did not declare where it came from

Without this, an audit record with no UserId is ambiguous: Anonymous and Unresolved look identical in the data and mean very different things to anyone reviewing the trail.

Writing the key needs no schema change - Metadata is already persisted - but note it now carries at least one entry on every transaction, where it was often empty before.

AuditUserInfo.Claims and .Roles are resolved for use at retrieval time and are not persisted; AuditTransaction has no such columns.

See Custom Resolvers for how to stamp Source from your own IAuditUserResolver.


GDPR Compliance

Storage Policies

Applied before anything hits the database. Configure per entity, per field:

options.Gdpr.ForEntity<Customer>(e =>
{
    e.ExcludeOnStorage(c => c.CreditCardNumber); // not stored at all
    e.MaskOnStorage(c => c.Email); // "j***n@mail.com"
    e.AnonymizeOnStorage(c => c.Phone); // "[ANONYMIZED]"
    e.HashOnStorage(c => c.Ssn); // SHA-256 hex string
    e.TransformOnStorage(c => c.Notes, val => val.Substring(0, 10) + "...");
});
Action Stored Value Reversible
Exclude Field removed entirely N/A
Mask First + last char visible, middle masked: j***e No
Anonymize [ANONYMIZED] No
Hash SHA-256 hex digest No
Transform Custom Func<string, string> Depends

Retrieval Policies

Separate from storage policies. This controls what the reader sees when querying. Roles are checked first, then claims:

options.Gdpr.ForEntity<Customer>(e =>
{
    // Only Admin or Auditor roles can see the email
    e.MaskOnRetrieval(c => c.Email, access => access
        .AllowRoles("Admin", "Auditor"));

    // Only users with gdpr=full claim can see SSN
    e.AnonymizeOnRetrieval(c => c.Ssn, access => access
        .AllowClaim("gdpr", "full"));

    // Either role or claim grants access
    e.MaskOnRetrieval(c => c.Phone, access => access
        .AllowRoles("Admin")
        .AllowClaim("support", "tier2"));
});

Role match = full access. No role match = check claims. Neither = the field stays masked.

Right to Erasure

GDPR Article 17. Wipes a user's identity from all their audit records:

await auditStore.AnonymizeByUserAsync("user-123");

Replaces UserId, UserName, IpAddress with [ERASED] across all their transactions.


Non-Web Scenarios

No HttpContext? No problem. Just drop the AddAuditTrailAspNetCore() call:

// Register without ASP.NET Core
services.AddAuditTrail(opts =>
{
    opts.EfCore.Intercept<AppDbContext>();
    opts.Storage.UseSqlServer(connectionString);
})
.Services
.AddAuditTrailEfCore();

services.AddAuditTrailSqlServer();

Set the user yourself via IAuditScopeContext:

using (var scope = serviceProvider.CreateScope())
{
    var scopeContext = scope.ServiceProvider.GetRequiredService<IAuditScopeContext>();
    scopeContext.SetUser(new AuditUserInfo
    {
        UserId = "worker-1",
        UserName = "BackgroundWorker",
        IpAddress = "127.0.0.1"
    });

    var db = scope.ServiceProvider.GetRequiredService<AppDbContext>();
    db.Orders.Add(new Order { CustomerName = "Alice", Total = 100 });
    await db.SaveChangesAsync(); // Audited with worker-1 as the user
}

Querying Audit Logs

Pass a GdprRetrievalContext so the store knows which fields the current user is allowed to see:

// Inject IAuditStore
var context = new GdprRetrievalContext
{
    UserRoles = currentUser.Roles,
    UserClaims = currentUser.Claims
};

var result = await auditStore.QueryAsync(
    new AuditTransactionQuery { Skip = 0, Take = 50 },
    context);

// result.Response contains IEnumerable<AuditTransaction>
// Fields are masked/anonymized based on the user's roles and claims

Or from a controller - pretty much the same, just pull roles/claims from the ClaimsPrincipal:

[HttpPost("query")]
public async Task<IActionResult> Query(CancellationToken ct)
{
    var context = new GdprRetrievalContext
    {
        UserRoles = User.Claims
            .Where(c => c.Type == ClaimTypes.Role)
            .Select(c => c.Value),
        UserClaims = User.Claims
            .ToDictionary(c => c.Type, c => c.Value)
    };

    var result = await _auditStore.QueryAsync(
        new AuditTransactionQuery(), context, ct);

    return Ok(result.Response);
}

Customization

Custom User Resolver

If the built-in resolvers don't fit:

public class MyUserResolver : IAuditUserResolver
{
    public IResult<AuditUserInfo> Resolve()
    {
            // Set Source when one of the AuditUserSource values describes where this identity
            // came from (ScopeContext, HttpContext, ThreadPrincipal). Leaving it unset records
            // AuditUserSource.Unspecified - a real actor whose provenance was not declared.
        return Result<AuditUserInfo>.Success(new AuditUserInfo
        {
            UserId = "system",
            UserName = "SystemService"
        });
    }
}

// Register
options.UseUserResolver<MyUserResolver>();

Custom Source Resolver

public class MySourceResolver : IAuditSourceResolver
{
    public IResult<string> Resolve()
        => Result<string>.Success("OrderService-v2");
}

// Register
options.UseSourceResolver<MySourceResolver>();

Selective Auditing

A few ways to control what gets audited.

Marker interface - everything gets audited:

public class Order : IAuditable { }

More control - pick actions, exclude fields:

public class Order : IAuditableEntity
{
    public bool ShouldAudit(AuditAction action)
        => action != AuditAction.Read; // Skip read auditing

    public IEnumerable<string> GetExcludedFields()
        => new[] { "InternalNotes" }; // Exclude specific fields
}

At the DbContext level:

public class AppDbContext : DbContext, IAuditableContext
{
    public IEnumerable<Type> GetExcludedEntityTypes()
        => new[] { typeof(MigrationHistory) };
}

Or just exclude globally:

options.Exclude<MigrationHistory>();

Storage Providers Reference

Provider Package Target Database
SQL Server Storage.EfSqlServer netstandard2.1 SQL Server via EF Core
PostgreSQL Storage.EfPostgreSql netstandard2.1 PostgreSQL via EF Core + Npgsql
MongoDB Storage.EfMongoDb net8.0 MongoDB via EF Core + MongoDB provider
File Storage.File netstandard2.1 JSON files (one per day)

They all implement IAuditStore:

Method Description
SaveAsync(AuditTransaction) Persist a transaction
QueryAsync(query, gdprContext) Retrieve with paging + GDPR retrieval policies
AnonymizeByUserAsync(userId) Right to erasure
PurgeBeforeAsync(DateTimeOffset) Retention cleanup

Samples

Check the src/samples/ folder for working examples:

Sample Runtime Storage Path
WebApiEfSqlServerNet5 .NET 5 SQL Server src/samples/ef/WebApiEfSqlServerNet5
WebApiEfSqlServerNet6 .NET 6 SQL Server src/samples/ef/WebApiEfSqlServerNet6
WebApiEfPostgreSqlNet5 .NET 5 PostgreSQL src/samples/ef/WebApiEfPostgreSqlNet5
WebApiEfPostgreSqlNet6 .NET 6 PostgreSQL src/samples/ef/WebApiEfPostgreSqlNet6
WebApiEfPostgreSqlNet7 .NET 7 PostgreSQL src/samples/ef/WebApiEfPostgreSqlNet7
WebApiEfPostgreSqlNet8 .NET 8 PostgreSQL src/samples/ef/WebApiEfPostgreSqlNet8
WebApiEfPostgreSqlNet9 .NET 9 PostgreSQL src/samples/ef/WebApiEfPostgreSqlNet9
WebApiEfMongoDbNet8 .NET 8 MongoDB src/samples/ef/WebApiEfMongoDbNet8
SampleWorkerService Worker File (JSON) src/samples/worker/SampleWorkerService

The Web API samples are a simple Blog API (Posts + Comments) with GDPR policies, Swagger, and an AuditController for browsing the audit trail. SampleWorkerService shows the non-HTTP path: setting the actor through IAuditScopeContext instead of HttpContext.


Requirements

  • .NET Standard 2.1 (library targets)
  • EF Core 5.0+ (compatible with 5.x through 9.x)
  • Test projects: .NET 8.0, MSTest 3.3.1

Supported Runtimes

Targets netstandard2.1, so anything .NET Core 3.x or later (.NET 5 through 9+).

About

It hooks into Entity Framework Core via interceptors to track Create, Update, Delete, and optionally Read operations at the property level, recording both old and new values. Each audit transaction is enriched with user identity, IP address, correlation/trace IDs, and custom metadata making it straightforward to answer who changed what, when, etc

Topics

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages