Du kan använda aggregeringsramverket för att uppnå detta, det kommer inte att ändra hur du har byggt upp ditt filter eftersom du bara kan använda detta inom en $match
skede.
Det finns för närvarande inget typsäkert sätt att skapa ett exempelsteg (detta finns på Jira-backloggen CSHARP- 2659 ), men du kan bara använda den normala JSON-syntaxen.
var client = new MongoClient();
var db = client.GetDatabase("test");
var collection = db.GetCollection<Person>("people");
// Setup some data
var people = Enumerable.Range(1, 100)
.Select(x => new Person {Name = $"Person {x}", Age = x});
await collection.InsertManyAsync(people);
var filter = Builders<Person>.Filter.Gt(x => x.Age, 18);
var sampleSize = 10;
// Run aggregation query with a sample stage ($sample)
var personSample = await collection.Aggregate()
.Match(filter)
.AppendStage<Person>([email protected]"{{ $sample: {{ size: {sampleSize} }} }}")
.ToListAsync();
// Output sample
foreach (var person in personSample)
{
Console.WriteLine($"{person.Name}, Age: {person.Age}");
}
// Example output, note only 10 items all with the matching filter.
// Person 84, Age: 84
// Person 97, Age: 97
// Person 35, Age: 35
// Person 40, Age: 40
// Person 69, Age: 69
// Person 28, Age: 28
// Person 79, Age: 79
// Person 31, Age: 31
// Person 20, Age: 20
// Person 64, Age: 64
Du kan hitta mer information om $sample stage i MongoDB-dokumentationen, https://docs.mongodb.com/manual/reference/operator/aggregation/sample/