Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to submit a query that is expressed in the shell query syntax to the mongo c# driver

For example Something like

Coll.find { "myrecs","$query : { x : 3, y : "abc" }, $orderby : { x : 1 } } ");

To take an example from the shell guide

share|improve this question

2 Answers

up vote 13 down vote accepted

There is no exact same functionality you want.

But you can create BsonDocument from json for query:

var jsonQuery = "{ x : 3, y : "abc" }";
BsonDocument doc = MongoDB.Bson.Serialization
                   .BsonSerializer.Deserialize<BsonDocument>(jsonQuery);

And after that you can create query from BsonDocument:

var query = new QueryComplete(doc); // or probably Query.Wrap(doc);

The same you can do for the sort expression:

var jsonOrder = "{ x : 1 }";
BsonDocument orderDoc = BsonSerializer.Deserialize<BsonDocument>(jsonQuery);

var sortExpr = new SortByWrapper(orderDoc);

Also you can create extension method for the MongoCollection like this:

 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);

   var query = new QueryComplete(queryDoc);
   var order = new SortByWrapper(orderDoc);

   var cursor = collection.FindAs<T>(query);
   cursor.SetSortOrder(order);

   return cursor.ToList();
 }

I am not tested above code. Will do it later if need.

Update:

Just tested above code, it's working!

You can use it like this:

  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 }");
share|improve this answer
this is close. It still requires me to parse what the user enters and brek it into separate clauses tho. – pm100 May 25 '11 at 15:35
SortBy.Wrap doesnt compile for me in latest driver from git. NO such method – pm100 May 25 '11 at 15:59
new SortByWrapper(orderDoc) – pm100 May 26 '11 at 0:19
@pm100: Yeah, exactly. Just downloaded latest version of driver. – Andrew Orsich May 26 '11 at 5:09

Using the official C# driver, you'd do something like this:

var server = MongoServer.Create("mongodb://localhost:27017");
var db = server.GetDatabase("mydb");
var col = db.GetCollection("col");

var query = Query.And(Query.EQ("x", 3), Query.EQ("y", "abc"));
var resultsCursor = col.Find(query).SetSortOrder("x");
var results = resultsCursor.ToList();

The equivalent query from the shell would be:

col.find({ x: 3, y: "abc" }).sort({ x: 1 })
share|improve this answer
Thx Chris, but this is not what I am looking for. i know how to create a query like that. But thats not what I want. I want the user to be able to enter a query string into my app, and then I execute it – pm100 May 25 '11 at 15:47
Ah, ok, I didn't read the question properly :) – Chris Fulstow May 25 '11 at 22:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.