MongoDB.Repository.Core 2.0.0

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

// Install MongoDB.Repository.Core as a Cake Tool
#tool nuget:?package=MongoDB.Repository.Core&version=2.0.0

MongoDB.SimpleRepository

Repository implementation for .net core MongoDB driver.

Supports

  • Any type for id, like Guid or int. ObjectId or BsonId are not required in your classes. Keep your POCO objects plain!
  • Connection pooling. Takes advantage of MongoDb.Driver's support for thread-safe static database and collection references.
  • Bulk add or delete.

Nuget package MongoDB.Repository.Core

Usage

  1. Name one of the fields "Id" in your model. It doesn't need to be an ObjectId or have Bson attributes. Any type except for a list or array will do as an Id.
    public class Record
    {
        public Guid Id {get; set;}
        public string Name { get; set; }
    }
  1. Your repository. Takes two type parameters--the type of your record and the type of the Id--and then your connection string.
    var repo = new Repository<Record, Guid>(connectionString);

Examples

FindById:

    var record = await repo.FindByIdAsync(new Guid("134c24bf-e1c8-4ec9-bd7e-ebbe211ebb72"));

Upsert accepts an optional IEqualityComparer, which will test whether there are actually any changes between the record to upsert and the existing record. This can greatly improve speed, since it only writes when it needs to.

    public class RecordComparer : IEqualityComparer<Record>
    {
        public bool Equals(Record x, Record y)
        {
            if (x == null && y == null) return true;
            if (x == null || y == null) return false;

            return x.Name == y.Name;
        }

        public int GetHashCode(Record obj)
        {
            return obj.Name?.GetHashCode() ?? 0;
        }
    }
    
    //Implementation
    repo.Upsert(myRecord, new RecordComparer());
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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 941 9/20/2018
1.0.1 758 9/17/2018
1.0.0 741 9/16/2018

Version 2 supports faster upserts and synchronous methods.