我对与身份和实体框架相关的问题感到疯狂。我正在使用代码优先方法。
我有这些课程:
public class WebApplicationUser : IdentityUser
{
public virtual ICollection<Favorite> Favorites { get; set; }
}
public class Favorite
{
public int Id { get; set; }
public string? ImageName { get; set; }
public virtual WebApplicationUser WebApplicationUser { get; set; }
}
public class WebApplicationContext : IdentityDbContext<WebApplicationUser>
{
public WebApplicationContext(DbContextOptions<WebApplicationContext> options)
: base(options)
{
}
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
// Customize the ASP.NET Identity model and override the defaults if needed.
// For example, you can rename the ASP.NET Identity table names and more.
// Add your customizations after calling base.OnModelCreating(builder);
}
}
我想添加
Favorites
属性,如上面的代码所示。
当我使用代码添加新的
Favorite
时,它工作正常并且正在传输到数据库中。
我通过获取当前用户对象来做到这一点
var user = await _userManager.GetUserAsync(HttpContext.User);
user.Favorites.Add
问题是由于某种原因,数据库中现有的收藏夹没有填充到我的
user.Favorites
收藏中(因此它们没有被回读)。
当我将元素添加到集合中时,它们被写入数据库但是当我稍后尝试在另一个控制器操作中读取收藏夹时,我总是得到一个空集合。
有人知道出了什么问题吗?
我在其他论坛尝试了不同的解决方案,但没有任何效果