0

我正在学习将 azure 与 asp.net 与 sql 数据库一起使用的教程,并且很难克服我收到的错误。我正在关注的教程是 - “http://www.windowsazure.com/en-us/develop/net/tutorials/web-site-with-sql-database/#aspnetwindowsazureinfo”

在包管理器控制台中,我输入了“enable-migrations -ContextTypeName ToDoListApp.Models.ToDoDb”,并且工作正常,如下图所示。

Checking if the context targets an existing database...
Code First Migrations enabled for project ToDoListApp.

然后我输入了“add-migration Initial”,我收到了这个错误。

“无法构建下一次迁移,因为目标数据库是使用早于 EF 4.3 的 Code First 版本创建的,并且不包含迁移历史记录表。要开始对此数据库使用迁移,请确保当前模型与目标数据库兼容,并且执行迁移更新过程。(在 Visual Studio 中,您可以使用包管理器控制台中的 Update-Database 命令来执行迁移更新过程)。

我还使用了命令“-Verbose”-发现错误在目标数据库中。

Using StartUp project 'ToDoListApp'.
Using NuGet project 'ToDoListApp'.
Target database is: 'ToDoListApp.Models.ToDoDb' (DataSource: .\SQLEXPRESS, Provider: System.Data.SqlClient, Origin: Convention). 
  • 注意:* 我已经在 azure 上建立了一个网站,以及 sql 数据库,并通过发布将其链接到这个项目。

我已将错误输入 Google,有人说“Add-Migration InitialMigration -IgnoreChanges”可以修复它,来自

“http://www.woohoo.uk.com/Blog/updating-entity-framework-4-1-with-code-first-migrations”

和其他人说只在包管理器控制台中更新数据库,这似乎都不起作用,我正在遵循微软提供的教程,并且一路上我收到了这个问题。

解决这种情况的任何帮助将不胜感激,我正在使用 Visual Studio 2012,c# asp.net mv3 framework 4.5。

在我的 web.config 文件中,我也输入了代码

 <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  <contexts>
      <context type="ToDoListApp.Models.ToDoDb, ToDoListApp">
        <databaseInitializer type="System.Data.Entity.MigrateDatabaseToLatestVersion">
        <parameters>
          <parameter value="ToDoDb_DatabasePublish"/>
        </parameters>
        </databaseInitializer>
      </context>
    </contexts>
  </entityFramework>

我输入了“Add-Migration InitialMigration -IgnoreChanges”

输出的错误是..

 System.InvalidOperationException: Failed to set database initializer of type                 'System.Data.Entity.MigrateDatabaseToLatestVersion' for DbContext type 'ToDoListApp.Models.ToDoDb, ToDoListApp' specified in the application configuration. See inner exception for details. ---> System.TypeLoadException: Could not load type 'System.Data.Entity.MigrateDatabaseToLatestVersion' from assembly 'EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.
   at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMarkHandle stackMark, IntPtr pPrivHostBinder, Boolean loadTypeFromPartialName, ObjectHandleOnStack type)
   at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean loadTypeFromPartialName)
   at System.RuntimeType.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase,  Boolean reflectionOnly, StackCrawlMark& stackMark)
   at System.Type.GetType(String typeName, Boolean throwOnError)
   at System.Data.Entity.Internal.ConfigFile.DatabaseInitializerElement.GetInitializerType()
   at System.Data.Entity.Internal.AppConfig.InternalApplyInitializers(Boolean force)
   --- End of inner exception stack trace ---
   at System.Data.Entity.Internal.AppConfig.InternalApplyInitializers(Boolean force)
   at System.Data.Entity.Internal.InternalContext.PerformDatabaseInitialization()
   at System.Data.Entity.Internal.LazyInternalContext.<InitializeDatabase>b__4(InternalContext c)
   at System.Data.Entity.Internal.RetryAction`1.PerformAction(TInput input)
   at System.Data.Entity.Internal.LazyInternalContext.InitializeDatabaseAction(Action`1 action)
   at System.Data.Entity.Internal.LazyInternalContext.InitializeDatabase()
   at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
   at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
   at System.Data.Entity.Internal.Linq.InternalSet`1.get_InternalContext()
   at System.Data.Entity.Infrastructure.DbQuery`1.System.Linq.IQueryable.get_Provider()
   at System.Linq.Queryable.Count[TSource](IQueryable`1 source)
   at System.Data.Entity.Migrations.History.HistoryRepository.Exists[TContext](HistoryContextBase`1 context)
   at System.Data.Entity.Migrations.History.HistoryRepository.GetPendingMigrations(IEnumerable`1 localMigrations)
   at System.Data.Entity.Migrations.DbMigrator.GetPendingMigrations()
   at System.Data.Entity.Migrations.Infrastructure.MigratorBase.GetPendingMigrations()
   at System.Data.Entity.Migrations.Design.ToolingFacade.GetPendingMigrationsRunner.RunCore()
   at System.Data.Entity.Migrations.Design.ToolingFacade.BaseRunner.Run()
Failed to set database initializer of type 'System.Data.Entity.MigrateDatabaseToLatestVersion' for DbContext type 'ToDoListApp.Models.ToDoDb, ToDoListApp' specified in the application configuration. See inner exception for details.
4

1 回答 1

1

固定的 -

只需要我登录 sql server 对象资源管理器并删除表下的 EdmMetadata,然后在 web.config 中输入我的连接字符串,如果有人读过这篇文章并遇到同样的问题,这是一个例子..

<add name="DefaultConnection" connectionString="server=tcp:* insert server name*.database.windows.net,1433;Database=* insert database name *;User ID=*insert username *@* insert server name*;Password={*insert password here *};Trusted_Connection=False;Encrypt=True;Connection Timeout=30;"  />
于 2012-12-13T16:45:19.247 回答