ASP.NET MVC 检索具有特定名称的数据
ASP.NET MVC Retrieve data with certain name
我正在使用脚手架索引函数从数据库中获取所有数据。
// Scaffold-ed index():
public ActionResult Index()
{
return View(db.Objects.ToList());
}
// Database tables:
[ObjectID] [Name]
1 Tree
2 Plant
3 Flower
4 Tree
而不是所有对象,我只使用具有特定名称的对象(例如:树)。最好的解决方案是什么?应该使用 db.Objects.Find()
、Where()
等方法还是使用自定义查询?
Linq 对此非常有用,所需的代码是
db.Objects.Where(o => o.Name == "Tree").ToList();
我正在使用脚手架索引函数从数据库中获取所有数据。
// Scaffold-ed index():
public ActionResult Index()
{
return View(db.Objects.ToList());
}
// Database tables:
[ObjectID] [Name]
1 Tree
2 Plant
3 Flower
4 Tree
而不是所有对象,我只使用具有特定名称的对象(例如:树)。最好的解决方案是什么?应该使用 db.Objects.Find()
、Where()
等方法还是使用自定义查询?
Linq 对此非常有用,所需的代码是
db.Objects.Where(o => o.Name == "Tree").ToList();