Neexistuje žádná přesně stejná funkce, kterou chcete.
Ale můžete vytvořit BsonDocument z json pro dotaz:
var jsonQuery = "{ x : 3, y : 'abc' }";
BsonDocument doc = MongoDB.Bson.Serialization
.BsonSerializer.Deserialize<BsonDocument>(jsonQuery);
A poté můžete vytvořit dotaz z BsonDocument:
var query = new QueryComplete(doc); // or probably Query.Wrap(doc);
Totéž můžete udělat pro výraz řazení:
var jsonOrder = "{ x : 1 }";
BsonDocument orderDoc = BsonSerializer.Deserialize<BsonDocument>(jsonQuery);
var sortExpr = new SortByWrapper(orderDoc);
Také můžete vytvořit metodu rozšíření pro MongoCollection takto:
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();
}
Výše uvedený kód jsem netestoval. V případě potřeby to udělá později.
Aktualizace:
Právě jsem otestoval výše uvedený kód, funguje to!
Můžete jej použít takto:
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 }");