MongoGenericRepository 11.0.0
dotnet add package MongoGenericRepository --version 11.0.0
NuGet\Install-Package MongoGenericRepository -Version 11.0.0
<PackageReference Include="MongoGenericRepository" Version="11.0.0" />
<PackageVersion Include="MongoGenericRepository" Version="11.0.0" />
<PackageReference Include="MongoGenericRepository" />
paket add MongoGenericRepository --version 11.0.0
#r "nuget: MongoGenericRepository, 11.0.0"
#:package MongoGenericRepository@11.0.0
#addin nuget:?package=MongoGenericRepository&version=11.0.0
#tool nuget:?package=MongoGenericRepository&version=11.0.0
Straightforward, generic, extensible CRUD repository for MongoDB
| Product | Versions 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. |
-
.NETStandard 2.1
- Microsoft.Extensions.Options (>= 10.0.8)
- MongoDB.Driver (>= 3.8.1)
-
net10.0
- Microsoft.Extensions.Options (>= 10.0.8)
- MongoDB.Driver (>= 3.8.1)
-
net8.0
- Microsoft.Extensions.Options (>= 10.0.8)
- MongoDB.Driver (>= 3.8.1)
-
net9.0
- Microsoft.Extensions.Options (>= 10.0.8)
- MongoDB.Driver (>= 3.8.1)
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 |
|---|---|---|
| 11.0.0 | 99 | 5/27/2026 |
| 10.1.1 | 161 | 2/23/2026 |
| 10.1.0 | 253 | 1/16/2026 |
| 10.0.0 | 127 | 1/16/2026 |
| 9.0.4 | 625 | 4/16/2025 |
| 9.0.3 | 257 | 4/16/2025 |
| 9.0.2 | 257 | 4/15/2025 |
| 9.0.1 | 763 | 3/24/2025 |
| 9.0.0 | 276 | 11/20/2024 |
| 8.0.1 | 189 | 10/1/2024 |
| 8.0.0 | 909 | 11/16/2023 |
| 1.0.20 | 304 | 8/23/2023 |
| 1.0.19 | 403 | 4/28/2023 |
| 1.0.18 | 319 | 3/21/2023 |
| 1.0.17 | 383 | 12/28/2022 |
| 1.0.16 | 635 | 10/14/2022 |
| 1.0.15 | 533 | 10/7/2022 |
| 1.0.14 | 1,023 | 4/22/2022 |
| 1.0.13 | 624 | 8/11/2021 |
| 1.0.12 | 477 | 8/11/2021 |
Multi-document transaction support — breaking signature change.
Added:
- StartSessionAsync, SupportsTransactionsAsync, ExecuteInTransactionAsync on IReadWriteRepository.
- Optional IClientSessionHandle parameter on all non-obsolete read and mutation methods.
- When a session is supplied to a read method, the read targets the read/write collection (sessions are client-bound; cross-client reads would throw).
Breaking:
- The optional IClientSessionHandle parameter is inserted before CancellationToken. Positional callers like repo.Get(id, ct) must switch to repo.Get(id, cancellationToken: ct). External implementers of IReadOnlyDataRepository / IReadWriteRepository must add the new parameters.
See CHANGELOG.md for the full migration notes.