MongoZen 0.12.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package MongoZen --version 0.12.3
                    
NuGet\Install-Package MongoZen -Version 0.12.3
                    
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="MongoZen" Version="0.12.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MongoZen" Version="0.12.3" />
                    
Directory.Packages.props
<PackageReference Include="MongoZen" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MongoZen --version 0.12.3
                    
#r "nuget: MongoZen, 0.12.3"
                    
#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.
#:package MongoZen@0.12.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MongoZen&version=0.12.3
                    
Install as a Cake Addin
#tool nuget:?package=MongoZen&version=0.12.3
                    
Install as a Cake Tool

MongoZen

MongoDB is nice and all, but the driver experience in C# usually sucks. You either end up with reflection-heavy "automagical" repositories, or you're writing manual BsonDocument boilerplate for aggregation pipelines like it's 2011.

Now, the idea behind MongoZen is to take a Mongo driver then add "Unit of Work" and "Identity Map" patterns from EF Core or RavenDB. But I wanted them to actually be fast and as MongoDB-native as possible.

So, why should you care?

  • No Reflection on the Hot Path: Instead, there are Roslyn Source Generators to wire up your DbSet and sessions at compile-time. If it's slow, it's not because of us.
  • Identity Map: If you load the same document twice in one session, you get the same instance.
  • Automatic Change Tracking: Modify POCOs directly. When you call SaveChangesAsync(), we figure out what changed and flush it in a single bulk write operation per collection. Or a transaction if supported.
  • RavenDB-inspired API: Store, Delete, LoadAsync. It's a clean API that doesn't get in your way.
  • In-Memory Provider: Write tests that run fast without spinning up a Docker "testcontainer" container every time.

Quick Start

1. Define your Context

You need a partial class so the generator can do its thing.

public partial class MyDbContext : MongoZen.DbContext
{
    // These properties are automatically initialized
    public IDbSet<Person> People { get; set; } = null!;

    public MyDbContext(DbContextOptions options) : base(options) { }
}

2. Use it

Everything happens inside a session.

var options = DbContextOptions.CreateForMongo("mongodb://localhost:27017", "MyDatabase");
var db = new MyDbContext(options);

await using var session = db.StartSession();

// Fetch Alice
var alice = await session.LoadAsync<Person>("alice-id");

// Just change the property. No .Update() needed.
alice.Age = 31;

// Load someone else while we're at it
var bob = new Person { Name = "Bob", Age = 25 };
session.Store(bob);

// One network round-trip to commit everything
await session.SaveChangesAsync();

Testing

Just swap the options. It's that simple.

var options = new DbContextOptions(); // Default is In-Memory
var testDb = new MyDbContext(options);

Performance & Benchmarks (WIP)

We compare MongoZen against a hand-optimized raw driver baseline. The goal isn't just to be "as fast as" the driver, but to prove that the architectural overhead of Change Tracking and Identity Maps is negligible (or even beneficial) compared to manual boilerplate.

Results (1,000 & 5,000 Entities)

Test Environment: .NET 10, MongoDB Replica Set in Docker (directConnection=true).

Method Category Count Mean Ratio Allocated Alloc Ratio
MongoZen_ReadRepeat IdentityMap 5000 5.0 ms 0.02 33 KB 0.01
RawDriver_ReadRepeat IdentityMap 5000 305.9 ms 1.00 3173 KB 1.00
MongoZen_ReadAndModify ReadModify 5000 198.7 ms 0.67 30195 KB 0.93
RawDriver_ReadAndModify ReadModify 5000 297.3 ms 1.00 32339 KB 1.00
MongoZen_InsertBatch Insert 5000 285.7 ms 1.75 19464 KB 2.35
RawDriver_InsertBatch Insert 5000 171.0 ms 1.00 8275 KB 1.00

What these numbers mean:

  1. IdentityMap (Repeated Reads): Serve requests from memory. MongoZen is ~50x - 100x faster because it serves repeated requests for the same ID from the local ISessionTracker instead of hitting the wire.
  2. ReadAndModify (Change Tracking): This is the core "Zen" win. Even with the overhead of diffing, MongoZen is 33% faster and uses less memory than hand-written BulkWrite code. Why? Our optimized internal engine (using unmanaged Arena memory, HashSets, and zero-allocation DocId fingerprints) is more efficient at preparing write models than manual C# code.
  3. Insert (The "Tracking Tax"): Overhead has been cut in half (from 3.6x to 1.75x) thanks to the DocId discriminated union and session-level buffer pooling. This is the one-time cost of allocating shadow structs and registering entities in the Identity Map so you can enjoy the performance wins above for the rest of the object lifecycle.

More Info

Check out our Wiki for:

License

MIT. Go build something cool.

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
0.19.4 88 5/11/2026
0.19.3 90 5/9/2026
0.19.2 90 5/9/2026
0.19.0 93 4/30/2026
0.16.3 109 4/27/2026
0.16.0 98 4/26/2026
0.15.1 92 4/26/2026
0.15.0 88 4/26/2026
0.14.0 93 4/26/2026
0.13.0 95 4/26/2026
0.12.3 95 4/26/2026
0.11.0 97 4/23/2026
0.10.6 109 4/23/2026

- Initial work on MongoZen.