Không có chức năng chính xác giống như bạn muốn.
Nhưng bạn có thể tạo BsonDocument từ json cho truy vấn:
var jsonQuery = "{ x : 3, y : 'abc' }";
BsonDocument doc = MongoDB.Bson.Serialization
.BsonSerializer.Deserialize<BsonDocument>(jsonQuery);
Và sau đó, bạn có thể tạo truy vấn từ BsonDocument:
var query = new QueryComplete(doc); // or probably Query.Wrap(doc);
Bạn cũng có thể làm tương tự đối với biểu thức sắp xếp:
var jsonOrder = "{ x : 1 }";
BsonDocument orderDoc = BsonSerializer.Deserialize<BsonDocument>(jsonQuery);
var sortExpr = new SortByWrapper(orderDoc);
Ngoài ra, bạn có thể tạo phương thức mở rộng cho MongoCollection như sau:
public static List<T> GetItems<T>(this MongoCollection collection, string queryString, string orderString) where T : class
{
var queryDoc = BsonSerializer.Deserialize<BsonDocument>(queryString);
var orderDoc = BsonSerializer.Deserialize<BsonDocument>(orderString);
//as of version 1.8 you should use MongoDB.Driver.QueryDocument instead (thanks to @Erik Hunter)
var query = new QueryComplete(queryDoc);
var order = new SortByWrapper(orderDoc);
var cursor = collection.FindAs<T>(query);
cursor.SetSortOrder(order);
return cursor.ToList();
}
Tôi đã không kiểm tra mã ở trên. Sẽ làm điều đó sau nếu cần.
Cập nhật:
Chỉ cần kiểm tra mã ở trên, nó đang hoạt động!
Bạn có thể sử dụng nó như thế này:
var server = MongoServer.Create("mongodb://localhost:27020");
var collection= server.GetDatabase("examples").GetCollection("SO");
var items = collection.GetItems<DocType>("{ x : 3, y : 'abc' }", "{ x : 1 }");