Migrating from MongoDB Driver 2 to 3
Introduction
The release of MongoDB Driver 3 includes numerous user-requested fixes and improvements that were deferred in previous versions due to backward compatibility concerns. It also features internal improvements to reduce technical debt and enhance maintainability. One major update is the removal of a significant portion of the public API (primarily from MongoDB.Driver.Core
), which was not intended for public use. The removed APIs were marked as deprecated in version 2.30.0.
Please refer to the upgrade guide for a complete list of breaking changes and upgrade guidelines.
Repository Changes
Some method signatures in the MongoDbRepository
class have been updated because the IMongoQueryable
has been removed. The specific changes are as follows:
- The new
GetQueryableAsync
method has been added to returnIQueryable<TEntity>
. - The
GetMongoQueryable
andGetMongoQueryableAsync
methods returnIQueryable<TEntity>
instead ofIMongoQueryable<TEntity>
, - The
GetMongoQueryable
andGetMongoQueryableAsync
methods are marked as obsolete, You should use the newGetQueryableAsync
method instead.
Please update your application by searching for and replacing these method calls.
The return value of the
GetQueryableAsync
method isIQueryable<TEntity>
, which can be used directly to perform queries, similar to EF Core. Remove all instances ofIMongoQueryable
in your project and replace them withIQueryable
.
Previous code example:
Updated code example:
Unit Test Changes
Previously, we used the EphemeralMongo library for unit testing. However, it does not support the latest version of MongoDB.Driver 3.x. You should replace it with MongoSandbox.
In your unit test project files, replace the following:
With:
In your unit test classes, replace using EphemeralMongo
with using MongoSandbox
.
Official Upgrade Guide
We recommend reviewing the upgrade guide for MongoDB Driver 3 to ensure a smooth migration process.