Introduction
Explore how to integrate MongoDB with C# by mapping BSON documents to strongly typed objects. Understand the basics of MongoDB document structure and how to build a simple CRUD repository using .NET Core.
We'll cover the following...
We'll cover the following...
Recap
In previous chapters, Mongo DB basics part 1 and part 2, we covered some of the foundations of this database. We learned how to create databases, collections, documents, and we learned how to use them. We also learned information about distributing MongoDB, shards, replica sets, and how to manipulate each of these entities
Nevertheless, there is no single line of code, and everything is explained in a general manner (more or less). MongoDB Shell Client was used to demonstrate all of ...