Quantcast
Channel: C#タグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 9699

EntityFrameworkCoreでDDLファイルを出力する

$
0
0

目的

ASP.NET Core(.NET Core)でコードファーストでデータベースを作成する。
この際、実際データベースに発行しているDDL(SQL)をファイルに出力する方法を記す。

前提条件

Microsoft.EntityFrameworkCore.Tools を導入済である

方法

1.テーブルセットファイルを作成する
PM> Add-Migration Init
Build started...
Build succeeded.
To undo this action, use Remove-Migration.

https://docs.microsoft.com/ja-jp/ef/core/cli/powershell#add-migration

2.SQLスクリプト(DDL)を作成する
PM> Script-Migration 0
Build started...
Build succeeded.

https://docs.microsoft.com/ja-jp/ef/core/cli/powershell#script-migration

注意

本来マイグレーションを意識したコマンドである。


Viewing all articles
Browse latest Browse all 9699

Trending Articles