gpt4 book ai didi

asp.net-mvc - 如何在 aspnetusers 表中获取自定义字段?

转载 作者:行者123 更新时间:2023-12-03 23:08:50 25 4
gpt4 key购买 nike

使用 CodeFirst 迁移,我在 VS 2013 中的 asp mvc 模板中的标准数据库中的表 aspnetusers 中添加了自定义字段“姓氏”(对不起“in”)。如果我已登录,如何获取“姓氏”字段的值?

最佳答案

在任何操作方法中,您都可以通过调用 User.Identity.GetUserId() 扩展方法来获取当前用户 ID。您可以像这样使用 ApplicationUserManager 获取额外信息:

public ActionResult MyAction()
{
string surname = HttpContext.GetOwinContext()
.GetUserManager<ApplicationUserManager>()
.FindById(User.Identity.GetUserId()).Surname;
}

确保您添加了 Microsoft.AspNet.Identity.Owin 命名空间以使用扩展方法。

关于asp.net-mvc - 如何在 aspnetusers 表中获取自定义字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31864400/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com