我正在学习 MVC4,我得到了实体框架的想法。但我想知道您如何在 MVC 4 中执行旧式 sql 语句。
假设我使用 EF 代码执行此操作
public ActionResult Index(){
var model = from r in restaruants
select r;
return View(model);
}
是否可以在索引函数中使用旧式 sql 而不是 EF?
我对旧式 sql 的意思就像“从餐厅选择 *”
public ActionResult Index(){
/* Can I have something like this? */
var model = Return_Model_Somehow("select * from restaurants");
return View(model);
}