You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
5
5
- Before starting to write code, look for existing [tickets](https://jira.mongodb.org/browse/CSHARP#selectedTab=com.atlassian.jira.plugin.system.project%3Asummary-panel) or create one for your specific issue. That way you avoid working on something that might not be of interest or that has been addressed already in a different branch.
6
6
- Fork the [repo](https://github.com/mongodb/mongo-csharp-driver).
7
-
- Ensure your core.autocrlf settings are set to true.[see here](http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial#CSharpDriverTutorial-Downloading)
7
+
- Ensure your core.autocrlf settings are set to true.
8
8
- Follow the general coding style of the rest of the project.
9
-
- Write tests and make sure they pass.[see here](http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial#CSharpDriverTutorial-Runningunittests)
9
+
- Write tests and make sure they pass.
10
10
- Your final commit should have the JIRA issue number as the first part of the commit message. [see here](https://github.com/mongodb/mongo-csharp-driver/commit/40e69fe1cf45b0ed9d68a551b0222a140fa26ba2)
Copy file name to clipboardexpand all lines: Docs/reference/content/getting_started/installation.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,10 @@ The NuGet packages include support for three target framework monikers (TFMs): n
15
15
16
16
## NuGet Installation
17
17
18
-
[NuGet](http://www.nuget.org/) is the simplest way to get the driver. There are 5 packages available on nuget.
18
+
[NuGet](https://www.nuget.org/) is the simplest way to get the driver. There are 5 packages available on nuget.
19
19
20
-
-[MongoDB.Driver](http://www.nuget.org/packages/mongodb.driver): The new driver. It is mostly free of any legacy code and should be used for all new projects. More documentation can be found in the [reference guide]({{< relref "reference\driver\index.md" >}}).
21
-
-[MongoDB.Driver.Core](http://www.nuget.org/packages/mongodb.driver.core): The core of the driver and a dependency of MongoDB.Driver. You will probably not use this package directly. More documentation can be found in the [reference guide]({{< relref "reference\driver_core\index.md" >}}).
22
-
-[MongoDB.Driver.GridFS](http://www.nuget.org/packages/mongodb.driver.gridfs): The GridFS package. More documentation can be found in the [reference guide]({{< relref "reference\gridfs\index.md" >}}).
23
-
-[MongoDB.Bson](http://www.nuget.org/packages/mongodb.bson): The BSON layer. It is a dependency of MongoDB.Driver.Core. It may be used by itself. More documentation can be found in the [reference guide]({{< relref "reference\bson\index.md" >}}).
24
-
-[mongocsharpdriver](http://www.nuget.org/packages/mongocsharpdriver): The compatibility layer for those upgrading from our 1.x series. This should not be used for new projects. More information can be found in the [1.x documentation](http://mongodb.github.io/mongo-csharp-driver/1.11);
20
+
-[MongoDB.Driver](https://www.nuget.org/packages/mongodb.driver): The new driver. It is mostly free of any legacy code and should be used for all new projects. More documentation can be found in the [reference guide]({{< relref "reference\driver\index.md" >}}).
21
+
-[MongoDB.Driver.Core](https://www.nuget.org/packages/mongodb.driver.core): The core of the driver and a dependency of MongoDB.Driver. You will probably not use this package directly. More documentation can be found in the [reference guide]({{< relref "reference\driver_core\index.md" >}}).
22
+
-[MongoDB.Driver.GridFS](https://www.nuget.org/packages/mongodb.driver.gridfs): The GridFS package. More documentation can be found in the [reference guide]({{< relref "reference\gridfs\index.md" >}}).
23
+
-[MongoDB.Bson](https://www.nuget.org/packages/mongodb.bson): The BSON layer. It is a dependency of MongoDB.Driver.Core. It may be used by itself. More documentation can be found in the [reference guide]({{< relref "reference\bson\index.md" >}}).
24
+
-[mongocsharpdriver](https://www.nuget.org/packages/mongocsharpdriver): The compatibility layer for those upgrading from our 1.x series. This should not be used for new projects. More information can be found in the [1.x documentation](https://mongodb.github.io/mongo-csharp-driver/1.11);
There are numerous [update operators](http://docs.mongodb.org/manual/reference/operator/update-field/) supported by MongoDB.
297
+
There are numerous [update operators](https://www.mongodb.com/docs/manual/reference/operator/update-field/) supported by MongoDB.
298
298
299
299
To update at most 1 document (may be 0 if none match the filter), use the [`UpdateOne`]({{< apiref "M_MongoDB_Driver_IMongoCollection_1_UpdateOne" >}}) or [`UpdateOneAsync`]({{< apiref "M_MongoDB_Driver_IMongoCollection_1_UpdateOneAsync" >}}) methods to specify the filter and the update document. Here we update the first document that meets the filter `i == 10` and set the value of `i` to `110`:
Copy file name to clipboardexpand all lines: Docs/reference/content/issues_help.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -16,4 +16,4 @@ If you require assistance with this driver, please see our paid support resource
16
16
- Bug Reports that are reproducible can be filed in [JIRA](https://jira.mongodb.org/browse/CSHARP)
17
17
- Feature requests for the driver can be requested in our [Feedback Engine](https://feedback.mongodb.com/forums/924286-drivers)
18
18
19
-
If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the [instructions here](http://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report).
19
+
If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the [instructions here](https://www.mongodb.com/docs/manual/tutorial/create-a-vulnerability-report).
Copy file name to clipboardexpand all lines: Docs/reference/content/reference/bson/bson.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ using (var writer = new JsonWriter(output))
93
93
94
94
[`JsonWriter`]({{< apiref "T_MongoDB_Bson_IO_JsonWriter" >}}) supports writing strict JSON as well as both flavors of [MongoDB Extended JSON]({{< docsref "reference/mongodb-extended-json/" >}}). This, and other things, can be customized with the [`JsonWriterSettings`]({{< apiref "T_MongoDB_Bson_IO_JsonWriterSettings" >}}) class.
95
95
96
-
For instance, to write in a format for the [MongoDB Shell](http://docs.mongodb.org/manual/administration/scripting/), you can set the [`OutputMode`]({{< apiref "P_MongoDB_Bson_IO_JsonWriterSettings_OutputMode" >}}) to `Shell` and also set the [`ShellVersion`]({{< apiref "P_MongoDB_Bson_IO_JsonWriterSettings_ShellVersion" >}}) to the desired shell version.
96
+
For instance, to write in a format for the [MongoDB Shell](https://www.mongodb.com/docs/manual/administration/scripting/), you can set the [`OutputMode`]({{< apiref "P_MongoDB_Bson_IO_JsonWriterSettings_OutputMode" >}}) to `Shell` and also set the [`ShellVersion`]({{< apiref "P_MongoDB_Bson_IO_JsonWriterSettings_ShellVersion" >}}) to the desired shell version.
0 commit comments