File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -78,11 +78,6 @@ as follows:
7878 var restaurantsCollection = restaurantsDatabase.GetCollection<Restaurant>("restaurants");
7979 var queryableCollection = restaurantsCollection.AsQueryable();
8080
81- The ``AsQueryable()`` method returns an `IMongoQueryable
82- <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.Linq.IMongoQueryable.html>`__ instance that
83- has the ``IQueryable`` extension methods, along with a set of
84- MongoDB specific methods.
85-
8681Once you have the queryable object, you can compose a query using
8782**method syntax**. Some pipeline stages also support **query comprehension syntax**,
8883which resembles SQL query syntax.
Original file line number Diff line number Diff line change @@ -66,6 +66,10 @@ Version 3.0 Potential Breaking Change
6666 configuring authentication in the {+driver-short+}, see
6767 :ref:`Authentication Mechanisms. <csharp-authentication-mechanisms>`
6868
69+ - This version of the driver replaces the ``IMongoQueryable`` interface with the
70+ ``IQueryable`` interface, following the pattern used by most other LINQ providers. If your
71+ application contains references to ``IMongoQueryable``, replace them with ``IQueryable``.
72+
6973- This version removes the ``ClusterBuilder.ConfigureSdamLogging()`` method.
7074 To configure logging in your application, see the :ref:`csharp-logging` guide.
7175
You can’t perform that action at this time.
0 commit comments