我可以先使用 EF 代码和 .net 核心生成迁移脚本吗

1

本文介绍了我可以先使用 EF 代码和 .net 核心生成迁移脚本吗的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在使用 .Net Core 构建 MVC 应用程序,我需要生成迁移脚本.

I'm building a MVC application with .Net Core and I need to generate the script of a migration.

使用 EF6 我确实运行了命令

With EF6 I did run the command

update-database -script

但是当我尝试对 .net Core 做同样的事情时,会抛出下一个异常:

but when I try to do the same with .net Core is throwing the next exception:

更新数据库:找不到与参数匹配的参数名称'脚本'

Update-Database : A parameter cannot be found that matches parameter name 'script'

你知道是否有 EF Core 的等价物吗?

Do you know if there is an equivalent for EF Core?

推荐答案

根据 EF 文档 你可以使用 Script-Migration 命令.

As per EF documentation you can use Script-Migration command.

如果您只想编写所有迁移的脚本,您可以像这样从包管理器控制台调用它.如果您只想编写上次迁移的更改脚本,可以这样调用它:

If you want to just script all the migrations you can simply call it from Package Manager console like that. If you want to just script the changes from the last migration you can call it like this:

Script-Migration -From <PreviousMigration> -To <LastMigration>

请务必查看文档,该命令还有更多选项.

Be sure to check the docs, there're a few more options to the command.

这篇关于我可以先使用 EF 代码和 .net 核心生成迁移脚本吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

C# 中的多播委托奇怪行为?
Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)...
2023-11-11 C#/.NET开发问题
6

如何将代表存储在列表中
How to store delegates in a List(如何将代表存储在列表中)...
2023-11-11 C#/.NET开发问题
6

Delegate.CreateDelegate() 和泛型:错误绑定到目标方法
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)...
2023-11-11 C#/.NET开发问题
14

具有未知类型的 CreateDelegate
CreateDelegate with unknown types(具有未知类型的 CreateDelegate)...
2023-11-11 C#/.NET开发问题
5

Func&lt;T&gt;.BeginInvoke 使用线程池吗?
Does Funclt;Tgt;.BeginInvoke use the ThreadPool?(Funclt;Tgt;.BeginInvoke 使用线程池吗?)...
2023-11-11 C#/.NET开发问题
6

如何为具有空目标的实例方法创建委托?
How to create a delegate to an instance method with a null target?(如何为具有空目标的实例方法创建委托?)...
2023-11-11 C#/.NET开发问题
6