2016-04-06 17 views
0

Migrations çalıştı, ama şimdi, ne yapacağım?Geçtiğimiz yıl geçişler yapıldı, ancak şimdi geçen yıl değil

hatası: (kısmen,)

PM> update-database
Specify the '-Verbose' flag to view the SQL statements being applied to the target database. System.Runtime.Serialization.SerializationException: O tipo não foi resolvido para o associado 'MySql.Data.MySqlClient.MySqlException,MySql.Data, Version=6.9.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d'. em System.AppDomain.DoCallBack(CrossAppDomainDelegate callBackDelegate)
em System.Data.Entity.Migrations.Design.ToolingFacade.Run(BaseRunner runner) em System.Data.Entity.Migrations.Design.ToolingFacade.Update(String targetMigration, Boolean force) em System.Data.Entity.Migrations.UpdateDatabaseCommand.<>c__DisplayClass2.<.ctor>b__0() em System.Data.Entity.Migrations.MigrationsDomainCommand.Execute(Action command) The type has not been resolved to the associated 'MySql.Data.MySqlClient.MySqlException,MySql.Data, Version=6.9.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d'.
PM>

kod

<configuration> 
    <configSections> 
     <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> 
    </configSections>  
    <connectionStrings> 
     <add name="DefaultConnection" connectionString="Data Source=mySERVER;initial catalog=myDB;Integrated Security=false;uid=myID;pwd=myPWD;" providerName="System.Data.SqlClient"/> 
    </connectionStrings> 
    <appSettings> 
    <!-- I will show only if needed --> 
    </appSettings> 
    <system.web> 
    <!-- I will show only if needed --> 
    </system.web> 
    <system.webServer> 
    <modules> 
     <!-- I will show only if needed --> 
    </modules> 

    <handlers> 

     <!-- I will show only if needed --> 
    </handlers> 
</system.webServer> 
    <runtime> 
    <!-- I will show only if needed --> 
    </runtime> 
    <system.data> 
    <DbProviderFactories> 
    <!-- I will show only if needed --> 
    </DbProviderFactories> 
    </system.data> 

    <entityFramework> 
    <providers> 
     <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" /> 
     <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> 
    </providers> 
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" /> 
    </entityFramework> 

+0

Eğer çevirisini tedarik edebilir birden sağlayıcılarla çalıştı sığınak olsa dikkat edecek _O tipo não foi resolvido para o associado_? – wimh

+0

oh, üzgünüm :) – Lucas

+0

bunu kontrol edin, olası kopya: http://stackoverflow.com/questions/26806753/error-while-running-update-database-in-mvc5 –

cevap

0

yapılandırma dosyasında tek bağlantı dizesi, işaret gibi görünüyor sadece "System.Data.SqlClient" ile bir sunucuya sağlayıcı; ... Ve stacktrace MySQL hakkında ağlıyor.

MySQL'i destekleyen bir özellik sağlamanız gerektiğini tahmin ediyorum.

ben aynı proje :)

+0

işe yaramadı, ancak dikkat için teşekkürler. – Lucas