MongoGenericRepository 12.0.0

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

Straightforward, generic, extensible CRUD repository for MongoDB

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 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 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 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (1)

Showing the top 1 NuGet packages that depend on MongoGenericRepository:

Package Downloads
MongoGenericRepository.HealthChecks

Optional HealthChecks Add-On for MongoGenericRepository (checks ReadOnly / ReadWrite connections).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
12.0.0 120 8/6/2026
11.0.0 1,088 5/27/2026
10.1.1 178 2/23/2026
10.1.0 271 1/16/2026
10.0.0 146 1/16/2026
9.0.4 641 4/16/2025
9.0.3 272 4/16/2025
9.0.2 275 4/15/2025
9.0.1 811 3/24/2025
9.0.0 292 11/20/2024
8.0.1 203 10/1/2024
8.0.0 922 11/16/2023
1.0.20 317 8/23/2023
1.0.19 418 4/28/2023
1.0.18 330 3/21/2023
1.0.17 396 12/28/2022
1.0.16 648 10/14/2022
1.0.15 544 10/7/2022
1.0.14 1,032 4/22/2022
1.0.13 632 8/11/2021
Loading failed

Deserialization failures on key-based reads are no longer masked as "not found" — breaking behaviour change.

   Breaking:
   - Get(TKey) and Get(IEnumerable<TKey>) used to wrap the whole query, including document deserialization, in a catch for FormatException / ArgumentException. Any document that could not be mapped to the entity class — schema drift, where a stored field no longer matches the C# type — was silently reported as null / an empty list. Those exceptions now propagate. Calls that previously returned null may now throw.

   Unchanged:
   - A key that cannot be serialized into its stored representation (e.g. a string that is not a valid 24-digit ObjectId) still yields null / an empty list. This is now decided while the filter is rendered, before the query runs, instead of by catching the query's exception.

   Consumers: any code that treated a null from Get(id) as "absent" now needs to handle a FormatException for corrupt or drifted documents. Tests that assert the old masking behaviour must be updated.

   See CHANGELOG.md for the full migration notes.