我有一個名爲ECommerceEntities的EntityModel包含幾個實體。如果我想在asp.net mvc的視圖中使用這個模型,我可以通過ECommerceEntities實例來查看,或者我可以通過ECommerceEntities中的一個實體。通過EntityModel在asp.net mvc中查看?
我的意思是:
//Can I use this?
public ActionResult Index()
{
ECommerceEntities entity = new ECommerceEntities();
return View(entity);
}
或
//Should I use this?
public ActionResult Index()
{
ECommerceEntities.OneEntity one_entity = new ECommerceEntities.OneEntity();
//filling one_entity here and then send to view
return View(one_entity);
}
感謝。
這也是我的問題的答案和安全建議。非常感謝。 – 2012-04-05 13:57:28
你很歡迎:) – Matt 2012-04-05 14:00:12