我想排序不同的字段。即blogID,日期,作者 我發現爲了用的方法,但不知道如何在法傳遞值...幫助請使用實體模型排序數據
public List<blog> BlogFetch(string key)
{
List<blog> blogRes = new List<blog>();
using (var be = new BlogEntities())
{
blog res = new blog();
foreach (var User in be.blogs.OrderBy(<what goes here?>))
{
res = User;
blogRes.Add(res);
}
}
return blogRes;
}
謝謝..這是非常有益的 –