7

クラス ライブラリ プロジェクトで移行を有効にする方法は?

Code First EF5を使用してプロジェクトを構築しています。クラス ライブラリ プロジェクトを追加して、データと mvc Web プロジェクトを分離したいと考えています。

現在、mvc Web プロジェクトで移行が有効になっています。それも取り除かなければなりません。

何か案は?

4

2 に答える 2

10

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.

于 2013-04-30T15:14:03.960 に答える