新的 MVC 5 项目具有显示当前用户名的 _LoginPartial:
@Html.ActionLink("Hello " + User.Identity.GetUserName() + "!",
"Manage",
"Account",
routeValues: null,
htmlAttributes: new { title = "Manage" })
我已将姓/名字段添加到 ApplicationUser 类,但找不到显示它们而不是 UserName 的方法。有没有办法访问 ApplicationUser 对象?我尝试过直接强制转换(ApplicationUser)User
,但它会产生错误的强制转换异常。