From the course: MongoDB C# Developer Associate Cert Prep

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Using MongoDB C# client libraries

Using MongoDB C# client libraries - MongoDB Tutorial

From the course: MongoDB C# Developer Associate Cert Prep

Using MongoDB C# client libraries

- Hello. In this video you'll learn how to connect to a MongoDB Atlas cluster from a C# application. You'll also learn what drivers are and how they work with MongoDB. When you build an application that connects to MongoDB, the application requires a set of libraries to interact with your MongoDB instance. Collectively, these libraries are referred to as drivers. MongoDB provides C# drivers for synchronous and asynchronous application code. MongoDB drivers simplify connecting to and interacting with your database from an application. They establish secure connections to a MongoDB cluster and execute database operations on behalf of client applications. Additionally, drivers allow you to specify connection options. These might include security settings, write durability, read isolation, and much more. The official MongoDB drivers adhere to each programming language's best practices. They allow you to use all the…

Contents