在我的mongoDB中创建过滤功能的过程中,我使用适用于c#的mongoDB驱动程序创建了以下查找查询。returnawaitDefaultCollection.Find(c=>c.vintageInfo.IsVintage&&c.IsPublished&&c.AverageRating>=lowerRating&&filterArray1.Contains(c.filterSearchParameters.Dosage)).Skip(page*pageSize).Limit(pageSize).ToListAsync();这一切都很完美,一切都很棒!现在,正如我们在上面的示例中看到的