新的 MVC4 应用程序创建了 UserProfile 表:
用户 ID(int) | 用户名(nvarchar)
在控制器中:
string currentUser = User.Identity.Name; // returns UserName
var mu1 = Membership.GetUser(); // returns null
var mu2 = Membership.GetUser(currentUser); // returns null as well
我读了很多帖子,他们都在谈论获得 Guid,我什至在用户和会员表中都没有。
有没有办法获取当前登录 User 的 UserId (int)?