シェルクエリ構文で表されるクエリをmongo c#ドライバーに送信する方法はありますか?
たとえば次のようなもの
Coll.find { "myrecs","$query : { x : 3, y : "abc" }, $orderby : { x : 1 } } ");
シェルガイドから例をとるには
あなたが望む正確に同じ機能はありません。
ただし、クエリ用にjsonからBsonDocumentを作成できます。
var jsonQuery = "{ x : 3, y : 'abc' }";
BsonDocument doc = MongoDB.Bson.Serialization
.BsonSerializer.Deserialize<BsonDocument>(jsonQuery);
その後、BsonDocumentからクエリを作成できます。
var query = new QueryComplete(doc); // or probably Query.Wrap(doc);
ソート式にできること:
var jsonOrder = "{ x : 1 }";
BsonDocument orderDoc = BsonSerializer.Deserialize<BsonDocument>(jsonQuery);
var sortExpr = new SortByWrapper(orderDoc);
また、次のようにMongoCollectionの拡張メソッドを作成できます。
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();
}
上記のコードはテストしていません。必要に応じて後で行います。
更新:
上記のコードをテストしたところ、うまくいきました!
次のように使用できます。
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 }");
QueryCompleteクラスは廃止されたようです。使用する MongoDB.Driver.QueryDocument
代わりに。以下のように:
BsonDocument document = MongoDB.Bson.Serialization.BsonSerializer.Deserialize<BsonDocument>("{ name : value }");
QueryDocument queryDoc = new QueryDocument(document);
MongoCursor toReturn = collection.Find(queryDoc);
これは私が書いたWebサービス関数で、フィルタークエリで送信、制限、スキップして、ページ付けや、必要なコレクションの並べ替えクエリを実行できます。汎用的で高速です。
/// <summary>
/// This method returns data from a collection specified by data type
/// </summary>
/// <param name="dataType"></param>
/// <param name="filter">filter is a json specified filter. one or more separated by commas. example: { "value":"23" } example: { "enabled":true, "startdate":"2015-10-10"}</param>
/// <param name="limit">limit and skip are for pagination, limit is the number of results per page</param>
/// <param name="skip">skip is is the page size * page. so limit of 100 should use skip 0,100,200,300,400, etc. which represent page 1,2,3,4,5, etc</param>
/// <param name="sort">specify which fields to sort and direction example: { "value":1 } for ascending, {"value:-1} for descending</param>
/// <returns></returns>
[WebMethod]
public string GetData(string dataType, string filter, int limit, int skip, string sort) {
//example: limit of 100 and skip of 0 returns the first 100 records
//get bsondocument from a collection dynamically identified by datatype
try {
MongoCollection<BsonDocument> col = MongoDb.GetConnection("qis").GetCollection<BsonDocument>(dataType);
if (col == null) {
return "Error: Collection Not Found";
}
MongoCursor cursor = null;
SortByWrapper sortExpr = null;
//calc sort order
try {
BsonDocument orderDoc = BsonSerializer.Deserialize<BsonDocument>(sort);
sortExpr = new SortByWrapper(orderDoc);
} catch { }
//create a query from the filter if one is specified
try {
if (filter != "") {
//sample filter: "{tags:'dog'},{enabled:true}"
BsonDocument query = BsonSerializer.Deserialize<BsonDocument>(filter);
QueryDocument queryDoc = new QueryDocument(query);
cursor = col.Find(queryDoc).SetSkip(skip).SetLimit(limit);
if (sortExpr != null) {
cursor.SetSortOrder(sortExpr);
}
return cursor.ToJson();
}
} catch{}
//if no filter specified or the filter failed just return all
cursor = col.FindAll().SetSkip(skip).SetLimit(limit);
if (sortExpr != null) {
cursor.SetSortOrder(sortExpr);
}
return cursor.ToJson();
} catch(Exception ex) {
return "Exception: " + ex.Message;
}
}
「mytest2」というコレクションにこれらのレコードがあると仮定します。
[{ "_id" : ObjectId("54ff7b1e5cc61604f0bc3016"), "timestamp" : "2015-01-10 10:10:10", "value" : "23" },
{ "_id" : ObjectId("54ff7b415cc61604f0bc3017"), "timestamp" : "2015-01-10 10:10:11", "value" : "24" },
{ "_id" : ObjectId("54ff7b485cc61604f0bc3018"), "timestamp" : "2015-01-10 10:10:12", "value" : "25" },
{ "_id" : ObjectId("54ff7b4f5cc61604f0bc3019"), "timestamp" : "2015-01-10 10:10:13", "value" : "26" }]
次のパラメーターを使用してWebサービスを呼び出し、値> = 23および値<= 26の最初のページから降順で100レコードを返すことができます
dataType: mytest2
filter: { value: {$gte: 23}, value: {$lte: 26} }
limit: 100
skip: 0
sort: { "value": -1 }
楽しい!
以下は、文字列から.NETオブジェクトからBSONクエリに変換するために使用するいくつかのルーチンです(これはビジネスオブジェクトラッパーの一部なので、そのクラスへの参照が2つあります)。
public QueryDocument GetQueryFromString(string jsonQuery)
{
return new QueryDocument(BsonSerializer.Deserialize<BsonDocument>(jsonQuery));
}
public IEnumerable<T> QueryFromString<T>(string jsonQuery, string collectionName = null)
{
if (string.IsNullOrEmpty(collectionName))
collectionName = this.CollectionName;
var query = GetQueryFromString(jsonQuery);
var items = Database.GetCollection<T>(collectionName).Find(query);
return items as IEnumerable<T>;
}
public IEnumerable<T> QueryFromObject<T>(object queryObject, string collectionName = null)
{
if (string.IsNullOrEmpty(collectionName))
collectionName = this.CollectionName;
var query = new QueryDocument(queryObject.ToBsonDocument());
var items = Database.GetCollection<T>(collectionName).Find(query);
return items as IEnumerable<T>;
}
これらを使用すると、文字列またはオブジェクトのパラメーターを介してクエリを実行するのが非常に簡単になります。
var questionBus = new busQuestion();
var json = "{ QuestionText: /elimination/, GroupName: \"Elimination\" }";
var questions = questionBus.QueryFromString<Question>(json);
foreach(var question in questions) { ... }
またはオブジェクト構文を使用:
var questionBus = new busQuestion();
var query = new {QuestionText = new BsonRegularExpression("/elimination/"),
GroupName = "Elimination"};
var questions = questionBus.QueryFromObject<Question>(query);
foreach(var question in questions) { ... }
私がオブジェクト構文を気に入っているのは、JSON文字列に埋め込まれた引用符をハンドコーディングした場合に処理するよりも、C#コードで記述する方が少し簡単だからです。
公式C#ドライバー を使用すると、次のようになります。
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();
シェルからの同等のクエリは次のようになります。
col.find({ x: 3, y: "abc" }).sort({ x: 1 })