pefi.persistence 0.0.3

dotnet add package pefi.persistence --version 0.0.3
                    
NuGet\Install-Package pefi.persistence -Version 0.0.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="pefi.persistence" Version="0.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="pefi.persistence" Version="0.0.3" />
                    
Directory.Packages.props
<PackageReference Include="pefi.persistence" />
                    
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 pefi.persistence --version 0.0.3
                    
#r "nuget: pefi.persistence, 0.0.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 pefi.persistence@0.0.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=pefi.persistence&version=0.0.3
                    
Install as a Cake Addin
#tool nuget:?package=pefi.persistence&version=0.0.3
                    
Install as a Cake Tool

pefi.persistence

A reusable .NET class library that provides a clean abstraction over MongoDB for PeFi projects. It wraps the MongoDB .NET driver behind a simple generic interface, supports dependency injection, and includes OpenTelemetry-compatible distributed tracing out of the box.

Requirements

  • .NET 9.0
  • A running MongoDB instance

Installation

dotnet add package pefi.persistence

or add a package reference directly:

<PackageReference Include="pefi.persistence" Version="*" />

Usage

Register the persistence layer in your Program.cs or Startup.cs:

// Option 1: direct connection string
builder.Services.AddPeFiPersistance("mongodb://localhost:27017");

// Option 2: fluent configuration
builder.Services.AddPeFiPersistance(options =>
{
    options.ConnectionString = "mongodb://localhost:27017";
});

The connection string can also come from your appsettings.json or any other .NET configuration provider.

Inject IDataStore wherever you need persistence:

public class MyService(IDataStore store)
{
    public Task<MyDoc> AddAsync(MyDoc doc) =>
        store.Add("mydb", "mydocs", doc);

    public Task<IEnumerable<MyDoc>> GetAllAsync() =>
        store.Get<MyDoc>("mydb", "mydocs");

    public Task<IEnumerable<MyDoc>> FindAsync(string name) =>
        store.Get<MyDoc>("mydb", "mydocs", d => d.Name == name);

    public Task RemoveAsync(string id) =>
        store.Delete<MyDoc>("mydb", "mydocs", d => d.Id == id);

    public Task<MyDoc?> UpdateAsync(string id, MyDoc updated) =>
        store.Update<MyDoc>("mydb", "mydocs", d => d.Id == id, updated);
}

API

IDataStore exposes five operations:

Method Description
Add<T>(database, collection, item) Inserts a document and returns it
Get<T>(database, collection) Returns all documents in a collection
Get<T>(database, collection, predicate) Returns documents matching a LINQ predicate
Delete<T>(database, collection, predicate) Deletes documents matching a LINQ predicate
Update<T>(database, collection, predicate, item) Replaces the first document matching a LINQ predicate and returns the updated document, or null if no match was found

All methods are async.

Distributed Tracing

MongoDB operations are automatically instrumented via DiagnosticsActivityEventSubscriber, which emits Activity events compatible with OpenTelemetry. No additional configuration is required.

Build

dotnet build

To produce a NuGet package (also runs automatically on build due to GeneratePackageOnBuild):

dotnet pack -c Release

The .nupkg will be written to bin/Release/.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 was computed.  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.0.3 130 4/24/2026
0.0.2 92 4/23/2026
0.0.1 169 4/23/2026