public ActionResult Index()
{
var model = _context.TBL_UserFunctionScope
.Select(p => new FunctionScopeViewModel()
{
FunctionScopeID = p.FunctionScopeID,
ParentScopeName = _context.TBL_UserFunctionScope.Find(p.ParentScopeID).Name,
NameFunctionScope = p.Name,
NameFunction = p.TBL_UserFunction.Name
}).ToList();
return View(model);
}
У меня есть modelView с 4 атрибутами, и я хочу показать информацию ParentScopeName
по IDon на странице индекса ASP.NET MVC.
Но я получаю сообщение об ошибке
ParentScopeName = _context.TBL_UserFunctionScope.Find(p.ParentScopeID).Name