2

エンティティ フレームワークの使用方法を学んでいます

データベース モデルを設定したら、Web アプリケーションとコンソール プロジェクトで簡単に移行を実行できます。

しかし、Web サイト プロジェクトでデータベース モデルを作成して移行を実行すると、コンソールにプロンプ​​トが表示されます

System.ArgumentException: The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))

Server stack trace: 
   at EnvDTE.Properties.Item(Object index)
   at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
   at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)

Exception rethrown at [0]: 
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at EnvDTE.Properties.Item(Object index)
   at System.Data.Entity.Migrations.Extensions.ProjectExtensions.GetPropertyValue[T](Project project, String propertyName)
   at System.Data.Entity.Migrations.MigrationsDomainCommand.GetFacade(String configurationTypeName)
   at System.Data.Entity.Migrations.EnableMigrationsCommand.FindContextToEnable(String contextTypeName)
   at System.Data.Entity.Migrations.EnableMigrationsCommand.<>c__DisplayClass2.<.ctor>b__0()
   at System.Data.Entity.Migrations.MigrationsDomainCommand.Execute(Action command)
The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))

私はそれについて何ができますか?Q2. Web アプリケーション プロジェクトを作成した場合、どのようにデプロイできますか? FTP 以外に、Web サイトを展開する他の手段を知りません。

4

1 に答える 1

0

問題の原因は不明ですが、モデルとコンテキストが含まれる別のアセンブリを作成し、そのプロジェクトで移行を有効にすることで回避できる場合があります。Web サイト プロジェクトからそのプロジェクトを参照します。

于 2013-10-25T07:40:13.003 に答える