我正在使用 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;
}
我得到一个空值返回。任何人都知道如何在不同的上下文中成功使用简单的成员资格?