我想在我的ASP.NET-MVC 3 + SQL Server 2008应用程序中显示当前已自动化用户的表中的所有记录。但我有一些问题:
此代码与LINQ请求一起工作良好:
public ActionResult Index(todo obj)
{
string u = User.Identity.Name;
var th = (from tt in _db.todo select tt);
return View(th);
}
但此代码不起作用:
public ActionResult Index(todo obj)
{
string u = User.Identity.Name;
var th = (from tt in _db.todo where obj.login == u select tt);
return View(th);
}
并且此代码运行良好
if (u == obj.login) { ViewBag.res = "ok"; } else { ViewBag.res = "fail"; }
我做错了,请帮帮我。
答案 0 :(得分:1)
您可能希望针对您查询的表运行where where条件,而不是针对方法中的参数,即:
var th = (from tt in _db.todo where tt.login == u select tt);
答案 1 :(得分:0)
而不是obj.login == u
,请尝试
obj.Contains(u)