1

我正在使用 MVC4 Internet 应用程序,并且正在尝试更改帐户模型以使用我的上下文。我似乎无法让它工作。我试图删除上下文并将用户配置文件包含在我的上下文中,我可以登录等,但是当我通过用户 ID 检查配置文件时,它返回一个空值。

public DbSet<FightCard> FightCards { get; set; }
public DbSet<Fight> Fights { get; set; }
public DbSet<Fighter> Fighters { get; set; }
public DbSet<UserProfile> UserProfiles { get; set; }

[Table("UserProfile")]
public class UserProfile
{
    [Key]
    [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
    public int UserId { get; set; }
    public string UserName { get; set; }

}

当我尝试这样做时:

public ActionResult Profile(int id)
    {
        UserProfile profile = uc.UserProfiles.Find(id);
        ViewBag.Name = profile.UserName;
    }

我得到一个空值返回。任何人都知道如何在不同的上下文中成功使用简单的成员资格?

4

1 回答 1

1

在那里解决了。但老实说,我不确定是什么修复了它。这是我使用的链接,其中一部分解决了我的问题。

http://dansgreenshoes.com/2013/03/10/mvc4usertable/

于 2013-03-25T01:06:38.363 回答