How to make Async Where, Select with MongoDB.Driver.Linq

mongo
mongo
Participant
84 Points
8 Posts

I'm using MongoDB driver in c# with following packages:

using MongoDB.Driver;
using MongoDB.Driver.Linq;

We have Async method as:

var me = await peopleCollection.AsQueryable().FirstOrDefaultAsync(x => x.Name == "me");

But to fetch two or more record. I did not found any Async method:

var others = await peopleCollection.AsQueryable().Where(x => x.Name != "me");

How to achieve Async request for this kind of queries?

Views: 1316
Total Answered: 0
Total Marked As Answer: 0
Posted On: 09-Sep-2021 01:27

Share:   fb twitter linkedin
Answers
 Log In to Chat