我有自定义查询结果为
public ActionResult Index()
{
var Query = (from E in db.SITE_MASTER.AsEnumerable()
where E.IS_PAGE == true
select new
{
E.POST_TITLE,
E.POST_TEXT
}).ToList();
return View(Query);
}
现在,
如何查看此结果或如何为此结果查询创建视图。
谢谢...