【背景】
使用命令:Add-Migration **** 生成数据至数据库
【之前做过的手动修改】
因发现生成后的代码非自己想要的代码,中间就手动修改过相应的代码
修改的内容:将自动生成的关联字段“AccountID1”修改为了“AccountID”,去掉了尾部的数字1
【问题】
在进行查询时,提示:列名“AccountID1”无效
麻烦了,之前没遇到过此类问题,不知道如何修改
相关问题
- How to add reference column migration in Rails 6 w
- How do I copy all resources to a new namespace?
- How to Insert Identity by AddOrUpdate methode in S
- Realm swift change primaryKey
- Yii2 migration problems
相关文章
- EF core 分页低版本问题
- 关于使用EF Core 提示错误:列名AccountID1无效的问题
- Defining methods in Rails migrations
- django model save - override method not invoked du
- EFCore如何保持Connection为打开状态
- SeamPhaseListener - Could not start transaction -
- Defining SubSonic 3 ActiveRecord migrations
- Sql 2008 Developer to Sql Azure Migration
..不想修改的话在AccountID1上加特性 [column(“AccountID”)]
用 remove-Migration 把你建立的迁移删了,然后重新 add-migration 这样应该就可以了
最简单的办法是全删了重新来.
真要手动去改到同步麻烦死你.