我是EntityFramework的大三学生,我遇到了这样的问题。我创建了实体用户:
public class User:IdStatus
{
public string Info { get; set; }
public string Email { get; set; }
public string Login { get; set; }
public int Rating { get; set; }
public ICollection<PlayedQuestion> PlayedQustions { get; set; }
}
和实体PlayedQuestion:
public class PlayedQuestion:IdStatus
{
public User User { get; set; }
public Question Question { get; set; }
public bool IsSolve { get; set; }
}
当我在我的应用程序中向用户添加新播放的问题时,此问题通常保存在我的数据库中,但是当我获得用户并尝试枚举其PLAYEDQUESTIONS集合时,出现错误:空引用异常,因为PlayedQuestions集合为null 。请, 探索我,为什么这个问题不是来自用户的数据库,谢谢