From 5ae6b140fa1382a9f5fa402f57b2d177a82f7c58 Mon Sep 17 00:00:00 2001 From: Kailie Yuan Date: Tue, 26 Sep 2023 09:30:30 -0700 Subject: [PATCH] Adds compatibility info to landing and connection page --- source/fundamentals/connection.txt | 9 +++++++++ source/includes/fact-environments.rst | 7 +++++++ source/index.txt | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 source/includes/fact-environments.rst diff --git a/source/fundamentals/connection.txt b/source/fundamentals/connection.txt index ef21dd22..da8fa73e 100644 --- a/source/fundamentals/connection.txt +++ b/source/fundamentals/connection.txt @@ -19,6 +19,15 @@ Connection Guide This guide shows you how to connect to a MongoDB instance or replica set deployment using the Go Driver. +------------- +Compatibility +------------- + +You can use the C# driver to connect to deployments hosted in the +following environments: + +.. include:: /includes/fact-environments.rst + .. _golang-connection-uri: -------------- diff --git a/source/includes/fact-environments.rst b/source/includes/fact-environments.rst new file mode 100644 index 00000000..0cae4338 --- /dev/null +++ b/source/includes/fact-environments.rst @@ -0,0 +1,7 @@ +- `MongoDB Atlas + `__: The fully + managed service for MongoDB deployments in the cloud +- :ref:`MongoDB Enterprise `: The + subscription-based, self-managed version of MongoDB +- :ref:`MongoDB Community `: The + source-available, free-to-use, and self-managed version of MongoDB diff --git a/source/index.txt b/source/index.txt index a65247b9..b9d65b52 100644 --- a/source/index.txt +++ b/source/index.txt @@ -35,6 +35,14 @@ You can add the driver to your application to work with MongoDB in Go. Download it using `go get `__ or set up a runnable project by following our Quick Start guide. +Compatibility +------------- + +You can use the C# driver to connect to deployments hosted in the +following environments: + +.. include:: /includes/fact-environments.rst + Quick Start -----------