- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在编写初始模型后,我从控制台使用命令 Add-Migration 添加了迁移。创建了三个迁移文件,但我在文件中进行了一些意外和未定义的操作。
学生类(class):
public class Student
{
public string StudentsUserId { get; set; }
public bool is_accepted { get; set; }
public int Number_preferences { get; set; }
public List<Preference> Preferences { get; set; }
public List<Offers> Offers { get; set; }
public List List { get; set; }
[NotMapped]
public IList<Courscategory> courshistory { get; set; }
}
优惠类:
public class Offers
{
public string CourseID { get; set; }
public string SupervisorUserId { get; set; }
public string Department { get; set; }
public string Email { get; set; }
public int Max_student { get; set; }
public string CourseName { get; set; }
public string CourseDescription { get; set; }
public DateTime Start { get; set; }
public DateTime End { get; set; }
public int CourseAvaialbility { get; set; }
public string Requirements { get; set; }
public bool IsFull { get; set; }
public Supervisors Supervisor { get; set; } //Supervisor is a separate class
public List<CList> List { get; set; }
}
}
列出类:
public class List
{
public string CourseID { get; set; }
public string CourseName { get; set; }
public string StudentsUserId { get; set; }
public string SupervisorUserId { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public Offers Offer { get; set; }
public List<Students> Studnets { get; set; }
public List<Supervisors> Supervisor { get; set; }
public List<Preference> Preference { get; set; }
}
}
迁移文件中的代码:
migrationBuilder.CreateTable(
name: "CStudents",
columns: table => new
{
StudentsUserId= table.Column<string>(nullable: false),
is_accepted = table.Column<bool>(nullable: false),
Number_preferences = table.Column<int>(nullable: false),
ListCourseID = table.Column<string>(nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_CStudents", x => x.StudentsUserId);
table.ForeignKey(
name: "FK_StudentsUserId_List_ListCourseID",
column: x => x.ListCourseID,
principalTable: "List",
principalColumn: "CourseID",
onDelete: ReferentialAction.Restrict);
});
初始模型代码:
public class CFE_CrazyLabContext : DbContext
{
public CFE_CrazyLabContext(DbContextOptions<CFE_CrazyLabContext> options)
: base(options)
{
}
public DbSet<LearnAngebot.Models.CStudents> Students{ get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<CStudents>().HasKey(o => o.StudentsUserId);
}
}
ListCourseId 在 Student 类中不存在,不是该类的变量。不知道这些操作是如何添加的。
最佳答案
编辑后,看起来你有点混淆了关系,根据你的评论,你说 Entity Framework 为你创建的外键是错误的,这是因为你交换了它。您添加到 StudentsUserId 中的 List 类的 FKey 目前只是一个额外的字段,没有什么特别之处。
在 student 类中,列表类的链接应该如下所示
public class Student
{
public string StudentsUserId { get; set; }
public bool is_accepted { get; set; }
public int Number_preferences { get; set; }
public List<Preference> Preferences { get; set; }
public List<Offers> Offers { get; set; }
public List<List> List { get; set; }
[NotMapped]
public IList<Courscategory> courshistory { get; set; }
}
在您的 List 类中,它应该如下所示:
public class List
{
public string CourseID { get; set; }
public string CourseName { get; set; }
public string StudentsUserId { get; set; }
public string SupervisorUserId { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public Offers Offer { get; set; }
public Student Student { get; set; }
public List<Supervisors> Supervisor { get; set; }
public List<Preference> Preference { get; set; }
}
生成的额外字段“ListCourseId”感觉就像是 EF 按照 [Table]+[PKey] 模式自动生成的字段。
关于c# - C# 中 Migration 文件夹类内的意外操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56773917/
因此,我正在使用 rails(ruby 1.9.3p392、rails 3.2、sqlite3 db)并尝试将无处不在的博客教程代码部署到“生产”服务器(apache、passenger、ubuntu
我继承了一个项目,该项目设置为使用 Entity Framework 在新数据库上设置数据库架构。 该项目最初有两个不同的文件夹——默认的/Migrations 文件夹和另一个文件夹——带有 DbMi
我在我的 Nest 应用程序上运行这行代码: import * as typeOrm from "../node_modules/typeorm/index"; bootstrap(){ //
我需要像下面的代码一样创建一个外键: Create.ForeignKey().FromTable("TCGDocFiscalOpMedItem").ForeignColumn("IDCabecalho
如何从扩展 Migration 的类的 Up(或 Down)方法中获取迁移正在操作的数据库的名称 public class BaseMigration : Migration { public
我们已将迁移添加到我们的xamarin表单项目中,此后我们就无法将其部署到iOS设备上。它可以在模拟器上正常运行,但在部署到设备时会因AOT错误而失败。 这似乎是一个在网络上广泛传播的话题,但是到目前
我正在尝试自己研究 Fluent Migrator,但我遇到了一个问题,我需要更改由 Fluent Migrator 创建的表的结构,这意味着我使用以下代码创建了一个名为 user 的表 [Migr
我正在使用 PostgreSQL、Rails 3.1.3 和 Ruby 1.9.3。我正在努力使用 db:migrate 概述 here . 这是我在终端中看到的: funkdified@funkdi
我决定使用 gorm作为我的 ORM。我想使用 golang-migrate/migrate 进行迁移因为,看起来 GORM 没有版本化迁移文件。我宁愿使用 CLI 进行迁移,而不是使用自动迁移。 我
我正在针对现有 SQL Server 数据库设置 EF Core 3.1.3 迁移。 这是我到目前为止所做的: 从现有数据库搭建我的模型。 添加 InitialCreate 迁移。 删除 Initia
我正在玩 Entity Framework 和持续构建。到目前为止,通过使用 migrate.exe 和适当的参数,我能够毫无问题地运行迁移或一系列迁移。 但是,我在尝试让 migrate.exe 踢
我正在使用包管理器控制台向我的数据库添加迁移,但由于某种原因它只是卡住并且什么也不做。停止它并继续使用它的唯一方法是使用任务管理器关闭 Visual Studio。这是一个已知问题吗? 最佳答案 我不
我在sequelize上运行帮助命令,发现有两个不同的命令具有相同的描述: $ sequelize help:migration:create Sequelize [Node: 6.9.5, CLI:
在这里,我使用的是 Microsoft Azure。 其中,我正在尝试使用开源 DocumentDB 数据迁移工具将数据从各种来源导入 Microsoft Azure DocumentDB,包括 JS
我是 Laravel 的新手。 我正在开发 Laravel 版本 6。 我已经创建了迁移。 第一次运行良好,但如果我更改迁移文件中的某些内容,然后运行 php artisan migrate它显示
我已经使用 NuGet 安装了 Migrator.NET,但是当我尝试使用 MSBuild 运行迁移时,出现以下错误。我看到它在访问 Migrator.Framework 程序集时遇到问题,但我不确定
我有一个基于 miguel flask tutorial 的网络应用程序 所以我将 sqlalchemy-migrate 用于数据库,现在我应该在迁移中使用 Alembic 我该如何配置?有什么方法可
我已经尝试执行 cli 命令 ./doctrine generate-migrations-diff 并在正确的文件夹中正确创建了一个版本文件。 消息是:generate-migrations-dif
可以定义存储迁移的多个路径: doctrine_migrations.yaml doctrine_migrations: migrations_paths: 'App\Migr
我在我的 .Net 应用程序中使用 Fluent Migrator 1.6.2。 对于数据库的上迁移或下迁移,需要通过命令行传递汇编文件(迁移类所在的数据库工程的dll文件)来执行Migrate.ex
我是一名优秀的程序员,十分优秀!