我有一个使用新的 ASP.NET Web API 的 ASP.NET MVC 4 应用程序。我有一个从我的数据库中检索查询列表的方法。问题是我现在不确定如何处理这些数据。
我想让它呈现在一个漂亮的表格中,该表格可过滤、可排序、可搜索、分页等。因为返回了大约 40000 个查询。有什么建议以及我将如何实施它?谢谢。
编辑
这是我的查询模型:
public int EnquiryId { get; set; }
public string CustomerAccountNumber { get; set; }
public string Creator { get; set; }
public string Owner { get; set; }
public DateTime EnquiryDate { get; set; }
public int StatusId { get; set; }
public virtual Status EnquiryStatus { get; set; }
public virtual ICollection<EnquiryLines> Lines { get; set; }