我想查询我的MongoDB集合而没有使用MongoDB .NET Driver 2.0的任何过滤器,但我找不到方法。我有以下解决方法,但看起来很奇怪:D
var filter = Builders<FooBar>.Filter.Exists(x => x.Id);
var fooBars = await _fooBarCollection.Find(filter)
.Skip(0)
.Limit(100)
.ToListAsync();
在MongoDB .NET Driver 2.0中有没有办法在没有过滤器的情况下发出查询?
答案 0 :(得分:22)
如果没有过滤器,则无法使用Find
。
但是,您可以使用过滤所有内容的过滤器:
var findFluent = await _fooBarCollection.Find(_ => true);
或者您可以使用相同的空文档:
var findFluent = await _fooBarCollection.Find(new BsonDocument());
他们还添加了一个空滤镜,但它只能在较新版本的驱动程序中使用:
var findFluent = await _fooBarCollection.Find(Builders<FooBar>.Filter.Empty);
答案 1 :(得分:1)
FindAll()是MongoDB 1x系列驱动程序的一部分。要在2x系列驱动程序中获得相同的功能,请使用带有空BSON文档的find()。
var list = await collection.Find(new BsonDocument()).ToListAsync();
foreach (var dox in list)
{
Console.WriteLine(dox);
}
答案 2 :(得分:0)
它对我有用
public class TestProductContext
{
MongoClient _client;
IMongoDatabase _db;
public TestProductContext()
{
_client = new MongoClient("mongodb://localhost:27017");
_db = _client.GetDatabase("EmployeeDB");
}
public IMongoCollection<Product> Products => _db.GetCollection<Product>("Products");
}
public class DataAccess
{
private TestProductContext _testProductContext;
public DataAccess(TestProductContext testProductContext)
{
_testProductContext = testProductContext;
}
public List<Product> GetProducts()
{
List<Product> pto = new List<Product>();
var cursor = _testProductContext.Products.Find(new BsonDocument()).ToCursor();
foreach (var document in cursor.ToEnumerable())
{
pto.Add(document);
}
}
}
答案 3 :(得分:0)
要匹配所有元素,您可以使用 FilterDefinitionBuilder.Empty
属性。当用户可以选择查询整个集合或按单个属性过滤时,我会使用此属性。
如果您只想查询整个集合,而没有过滤器的可能性,那么这不是必需的。
var builder = Builders<Object>.Filter;
matchFilter;
FilterDefinition<Object> matchFilter = builder.Empty;
var results = await collection.Aggregate()
.Match(filter)
.ToListAsync()