LoginSignup
0
1

More than 1 year has passed since last update.

C# EntityFramework マイグレーションまとめ

Posted at

はじめに

Entity Frameworkを使う時のマイグレーションコマンドの使い方の備忘録。
ドキュメントや書籍を確認してもマイグレーションのRollbackの記事が上手に見つけられず苦労したので....

dotnet efのインストール

dotnet tool install --global dotnet-ef

マイグレーションファイルの作成

dotnet ef migrations add [マイグレーションファイル名]

マイグレーションの実行

dotnet ef database update

全テーブルの削除

dotnet ef database drop

ここにハマった。。。。。。

各コマンドを叩くと下記が表示された。

Build failed. Use dotnet build to see the errors.

ビルドを再度実行しても同じエラー。
リビルドすることで解決出来ました。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1