0
我已經通過外鍵鏈接我的成員應用用戶表作爲可以在模型MVC用戶身份
public int MemberId { get; set; }
public int? UserId { get; set; }
[ForeignKey("UserId")]
public ApplicationUser User { get; set; }
在Razor視圖中找到我希望能夠檢索用戶的詳細信息,例如
@Model.User.FirstName
,但我得到
System.NullReferenceException: Object reference not set to an instance of an object.
不知道缺什麼
你應該申報'公共ApplicationUser User''virtual',即'公共虛擬ApplicationUser User' – nbokmans