小编HAD*_*DAD的帖子

尝试创建初始迁移 EF Core 3 asp.net Core 时出错

我有以下课程:

public class Quiz 
    {
        public int Id { get; set; }
        public string Title { get; set; }
        public string Description { get; set; }
        public string UserToken { get; set; }
        public List<JoinQuizAndArea> AreasOfQuizzes { get; set; }
        public List<QuizQuestion> Questions { get; set; }
}
public class QuizQuestion
    {
        public int ListRanking { get; set; }
        public string Question { get; set; }
        public string Answer1 { get; set; }
        public string Answer2 { get; set; } …
Run Code Online (Sandbox Code Playgroud)

c# ef-code-first asp.net-core entity-framework-migrations ef-core-3.0

2
推荐指数
1
解决办法
5812
查看次数