2016-10-26 14:02:40 +08:00
|
|
|
|
using Bootstrap.DataAccess;
|
|
|
|
|
using Longbow.Web.Mvc;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
|
|
|
|
|
namespace Bootstrap.Admin.Models
|
|
|
|
|
{
|
|
|
|
|
public class QueryMenuOption : PaginationOption
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Category { get; set; }
|
|
|
|
|
|
|
|
|
|
public QueryData<Menu> RetrieveData()
|
|
|
|
|
{
|
|
|
|
|
var data = MenuHelper.RetrieveMenus();
|
|
|
|
|
if (!string.IsNullOrEmpty(Name))
|
|
|
|
|
{
|
|
|
|
|
data = data.Where(t => t.Name.Contains(Name));
|
|
|
|
|
}
|
2016-10-28 11:12:25 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(Category))
|
|
|
|
|
{
|
2016-10-28 15:51:08 +08:00
|
|
|
|
data = data.Where(t => t.Category.Contains(Category));
|
2016-10-28 11:12:25 +08:00
|
|
|
|
}
|
2016-10-26 14:02:40 +08:00
|
|
|
|
var ret = new QueryData<Menu>();
|
|
|
|
|
ret.total = data.Count();
|
|
|
|
|
// TODO: 通过option.Sort属性判断对那列进行排序,现在统一对名称列排序
|
|
|
|
|
data = Order == "asc" ? data.OrderBy(t => t.Name) : data.OrderByDescending(t => t.Name);
|
|
|
|
|
ret.rows = data.Skip(Offset).Take(Limit);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-25 18:54:20 +08:00
|
|
|
|
}
|