I have a document which has an array property that contains ids of documents stored in another collection, like below:
movie: { title: 'A title', genres: ['id_1', 'id_2', 'id_3', 'id_4' ] }
Now I want to pull all the related genres with one query for the specified movie. Is that possible with MongoDB driver for C# using Query.All()
?