クラス ライブラリ プロジェクトで移行を有効にする方法は?
Code First EF5を使用してプロジェクトを構築しています。クラス ライブラリ プロジェクトを追加して、データと mvc Web プロジェクトを分離したいと考えています。
現在、mvc Web プロジェクトで移行が有効になっています。それも取り除かなければなりません。
何か案は?
クラス ライブラリ プロジェクトで移行を有効にする方法は?
Code First EF5を使用してプロジェクトを構築しています。クラス ライブラリ プロジェクトを追加して、データと mvc Web プロジェクトを分離したいと考えています。
現在、mvc Web プロジェクトで移行が有効になっています。それも取り除かなければなりません。
何か案は?
You should be able to do it using the "Package Manager Console" (View > Other Windows > Package Manager Console).
Ensure the default project
drop down is set to the class library project you want to enable migrations for, ensure you have a reference to the Entity Framework DLL in the project, and then run enable-migrations
.
To run update-database
commands etc you'll need an app.config
file that includes a connection string for each of your data contexts.