Вот функция веб-сервиса, которую я написал, которую вы можете отправить в запросе фильтра, ограничить и пропустить для разбивки на страницы и запроса сортировки для любой коллекции, которую вы хотите!Это универсально и быстро.
/// <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" }]
Я мог бы сделать вызов веб-службы со следующими параметрами, чтобы вернуть 100записи, начинающиеся с первой страницы, где значение> = 23 и значение <= 26 в порядке убывания </p>
dataType: mytest2
filter: { value: {$gte: 23}, value: {$lte: 26} }
limit: 100
skip: 0
sort: { "value": -1 }
Наслаждайтесь!