我想在我的应用中创建网格视图 首先我有视图模型:
我的视图模型
我的控制器代码
public class ReportController : Controller
{
PropertyEntities1 Property_db = new PropertyEntities1();
public ActionResult ReportUsers(UserGridViewViewModel userrr)
{
var resualt = (from person in Property_db.Person_TB join user in Property_db.User_TB on person.Person_ID equals user.User_ID select new { person.Person_ID , person.Name, person.LName, user.Username, user.Password }).ToList();
return View(resualt);
}
}
我的查看代码
但不起作用 我该怎么办?