MongoDB学习笔记(三)在MVC模式下通过Jqgrid表格操作MongoDB数据(5)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-15 19:51 点击:次
{
var list = userModel.FindAll();
int i = 0;
var query = from u in list
select new
{ www.2cto.com
id = i++,
cell = new string[]{
u["UserId"].ToString(),
u["UserName"].ToString(),
u["Age"].ToString(),
u["Tel"].ToString(),
u["Email"].ToString(),
"-"
}
};
var data = new
{
total = query.Count() / Convert.ToInt32(rows) + 1,
page = Convert.ToInt32(page),
records = query.Count(),
rows = query.Skip(Convert.ToInt32(rows) * (Convert.ToInt32(page) - 1)).Take(Convert.ToInt32(rows))
};
return Json(data, JsonRequestBehavior.AllowGet);
}
/// <summary>
/// 响应Js的“Add”ajax请求,执行添加用户操作
/// </summary>
public ContentResult Add(string UserId, string UserName, int Age, string Tel, string Email)
{
Document doc = new Document();
doc["UserId"] = UserId;
doc["UserName"] = UserName;
doc["Age"] = Age;
doc["Tel"] = Tel;
doc["Email"] = Email;
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>