For instance I have a database of cars, which have a field called manufacture.
car: {
_id: <ObjectId>,
manufacture: "Opel",
model: "Astra"
}
How can I get all manufactures without repeating them using the latest implementation official C# driver for MongoDB?
I'd like this to be done in my request to the database, not after.