- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一种解决方案来重命名保留值的表的列,使用 Entity Framework 代码首先迁移 Jet 引擎数据库提供程序(MS Access 数据库)。
我尝试了几种方法,但由于处理 Jet Engine 和 MS Access DB,它们都没有奏效。
以下是我的模型更改和我已经尝试过的方法的详细信息:
(我缩短了更改以保持清晰):
' OLD properties
' Public Property WebServiceState As ServiceStateType?
' Public Property WebServiceRegistrationDate As DateTime?
' Public Property WebServiceEndOfTrialDate As DateTime?
' Public Property WebServiceExpirationDate As DateTime?
' NEW
Public Property WebServiceState As ServiceState
除了“WebService”之外,还有其他服务类型都具有相同的属性(注册日期,...)。因此,我创建了一个新类 ServiceState
来表示这些属性。
Public Class ServiceState
Public Property State As ServiceStateType?
Public Property RegistrationDate As DateTime?
Public Property EndOfTrialDate As DateTime?
Public Property ServiceStopAtDate As DateTime?
End Class
在迁移时,我必须将数据移动到新结构。我使用 PM-Console 和“add-migration”创建了一个迁移。这是 up 函数的自动生成代码:
Public Overrides Sub Up()
AddColumn("dbo.Services", "WebServiceState_State", Function(c) c.Int())
AddColumn("dbo.Services", "WebServiceState_RegistrationDate", Function(c) c.DateTime())
AddColumn("dbo.Services", "WebServiceState_EndOfTrialDate", Function(c) c.DateTime())
AddColumn("dbo.Services", "WebServiceState_ServiceStopAtDate", Function(c) c.DateTime())
DropColumn("dbo.Services", "WebServiceState")
DropColumn("dbo.Services", "WebServiceRegistrationDate")
DropColumn("dbo.Services", "WebServiceEndOfTrialDate")
DropColumn("dbo.Services", "WebServiceExpirationDate")
End Sub
使用此代码,数据将丢失,因为新旧属性之间没有数据传输。
为了保留数据,我尝试了以下在 How to rename a database column in Entity Framework 5 Code First migrations without losing data? 中找到的方法.
<强>1。使用 RenameColumn
RenameColumn("dbo.Services", "WebServiceState", "WebServiceState_State")
这是行不通的。 PM-Konsole 报告
Cannot rename objects with Jet
<强>2。使用 SQL 进行更新
Sql("Update dbo.Services SET [WebServiceState_State] = [WebServiceState]")
也不行。它在 GenerteSqlStatementConcrete
<强>3。使用数据库上下文更改迁移 Up 方法中的数据
恕我直言,这不是一个选项。它导致不一致的状态,因为模型已经处于迁移后状态,但数据库在表中仍然具有迁移前状态。模型和数据库不匹配,导致错误。
The model backing the 'DbContext' context has changed since the database was created. Consider using Code First Migrations to update the database.
要完成这项工作,我必须禁用模型检查,我认为这不是一件好事。 (引用:Change data in migration Up method - Entity Framework)
如何根据我正在处理的上述限制(主要是由于 MS Access 数据库导致的 Jet 引擎)重命名列/保留迁移数据?
最佳答案
除了我对bubi的回答的评论,这里是我最终使用的代码。请确保您使用的是 JetEntityFrameworkProvider 1.2.7 或更高版本。迁移不支持以下 SQL 语句 (reference)。
Public Overrides Sub Up()
AddColumn("dbo.Services", "WebServiceState_State", Function(c) c.Int())
AddColumn("dbo.Services", "WebServiceState_RegistrationDate", Function(c) c.DateTime())
AddColumn("dbo.Services", "WebServiceState_EndOfTrialDate", Function(c) c.DateTime())
AddColumn("dbo.Services", "WebServiceState_ServiceStopAtDate", Function(c) c.DateTime())
Sql("UPDATE Services SET [WebServiceState_State] = [WebServiceState]")
Sql("UPDATE Services SET [WebServiceState_RegistrationDate] = [WebServiceRegistrationDate]")
Sql("UPDATE Services SET [WebServiceState_EndOfTrialDate] = [WebServiceEndOfTrialDate]")
Sql("UPDATE Services SET [WebServiceState_ServiceStopAtDate] = [WebServiceExpirationDate]")
DropColumn("dbo.Services", "WebServiceState")
DropColumn("dbo.Services", "WebServiceRegistrationDate")
DropColumn("dbo.Services", "WebServiceEndOfTrialDate")
DropColumn("dbo.Services", "WebServiceExpirationDate")
End Sub
关于asp.net - 使用 Jet 引擎使用 Entity Framework (代码优先)重命名列(并保留数据),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46053838/
以下代码: if (!(ep = engOpen("\0"))) { fprintf(stderr, "\nCan't start MATLAB engine\n");
我在谈论一些网络事物,例如 http://uservoice.com/ 你能推荐任何其他类似的服务、网站,或者可能是(甚至更好)一个现成的引擎来部署在自己的服务器上? 实际上,更多关于系统的问题,可以
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我正在寻找一个矩阵表达式解析器/引擎。例如, 3 * A + B * C 其中 A、B、C 是矩阵是一个典型的表达式。这应该类似于(单值)数学表达式解析器/引擎,但应该处理矩阵值和变量。我已经用谷歌搜
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 5年前关闭。 Improve this qu
是否有基于 .net 的 cometd 引擎?比如 Ajax 推送引擎 那是免费和开源的吗? 最佳答案 轨道式 Orbited是一个 HTTP 守护进程,针对长期 cometd 连接进行了优化。它旨在
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我正在寻找支持以下功能的 haml javascript“端口”: 存储在文件中的模板。 JSON 输入。 支持“集合”[{Booking},{Booking},{Booking}] 进行迭代处理。
我在 IronPython 中托管 IronPython。我没有找到使用等效的命令行参数初始化它的方法:-X:FullFrames . 我的代码有点像这样: import clr clr.AddRef
我想将我工作的公司的所有松散信息整合到一个知识库中。 Wiki 似乎是一种可行的方法,但大部分相关信息都隐藏在 PST 文件中,并且需要很长时间才能说服人们将他们的电子邮件(包括附件)手动翻译成 Wi
我已经使用缓存的 flutter 引擎 flutter 到现有的 native 应用程序(添加到应用程序)中。 override fun onCreate(savedInstanceState: Bu
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我正在使用 Django Cassandra我已经定义了我的模型,我可以用它来命名一个表: class Meta: db_table = "table_name" 但是,Cassand
类似于 NoSQL 数据库,但适用于 OLAP。当然是开源的:) 编辑: OLAP 引擎在幕后使用关系数据库。例如 SAPBW 可以使用 Oracle 等。我的意思是一个没有这个底层关系数据库的 OL
我正在使用以下片段来 enable Razor templating in my solution (在 ASP.NET MVC3 之外)。是否可以轻松实现布局? 背景资料: 我在这一点上(模板编译成
我们目前使用闭源知识库解决方案,所见即所得创建文章是TinyMCE(看起来可能是修改/简化的)。 他们目前根本不允许更改它(添加插件等,除非您可以以某种方式注入(inject)插件)。 我确实拥有对
我正在评估我们的高性能电信应用程序的 BPEL 引擎,但性能似乎很差。我们评估了 Apache Ode、SunBPEL 引擎、Active BPEL 等。您知道任何更快的 BPEL 引擎实现或 C/C
Elastic / Lucene真的需要在文档中存储所有索引数据吗?您难道不就通过通过传递数据,以便Lucene may index the words into its hash table并为每个
我是 3D 游戏新手?我正在使用 Libgdx。如何计算像 Tetromino Revolution 游戏这样的透视相机的参数?请给我任何想法。 看图片:http://www.terminalstud
我是一名优秀的程序员,十分优秀!