Skip to content

Commit 676d6b9

Browse files
committed
CSHARP-4590: Update doc comments to reflect that LINQ3 is now the default.
1 parent aed0fcc commit 676d6b9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/MongoDB.Driver/Linq/LinqProvider.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ namespace MongoDB.Driver.Linq
2323
public enum LinqProvider
2424
{
2525
/// <summary>
26-
/// The LINQ provider that was first shipped with version 2.0 of the driver,
26+
/// The LINQ provider that was first shipped with version 2.0 of the driver. The V3 LINQ provider is now the default,
27+
/// but you can still select the V2 provider by configuring it in MongoClientSettings. The V2 LINQ provider is no
28+
/// longer being actively maintained and will eventually be removed.
2729
/// </summary>
2830
V2 = 2,
2931

3032
/// <summary>
31-
/// The LINQ provider that is planned to be the default in version 3.0 of the driver and can be optionally used before that.
33+
/// The current LINQ provider. The V3 LINQ provider is now the default LINQ provider.
3234
/// </summary>
3335
V3 = 3
3436
}

0 commit comments

Comments
 (0)