41 lines
1.4 KiB
C#
41 lines
1.4 KiB
C#
using Bootstrap.DataAccess;
|
||
using Longbow.Web.Mvc;
|
||
using System.Linq;
|
||
|
||
namespace Bootstrap.Admin.Models
|
||
{
|
||
public class QueryGroupOption : PaginationOption
|
||
{
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string GroupName { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Description { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public QueryData<Group> RetrieveData()
|
||
{
|
||
// int limit, int offset, string name, string price, string sort, string order
|
||
var data = GroupHelper.RetrieveGroups(string.Empty);
|
||
if (!string.IsNullOrEmpty(GroupName))
|
||
{
|
||
data = data.Where(t => t.GroupName.Contains(GroupName));
|
||
}
|
||
if (!string.IsNullOrEmpty(Description))
|
||
{
|
||
data = data.Where(t => t.Description.Contains(Description));
|
||
}
|
||
var ret = new QueryData<Group>();
|
||
ret.total = data.Count();
|
||
// TODO: 通过option.Sort属性判断对那列进行排序,现在统一对名称列排序
|
||
data = Order == "asc" ? data.OrderBy(t => t.GroupName) : data.OrderByDescending(t => t.GroupName);
|
||
ret.rows = data.Skip(Offset).Take(Limit);
|
||
return ret;
|
||
}
|
||
}
|
||
} |