1

私の ASP.NET MVC 4 アプリは、IIS と IEExpress 環境で完全に動作しています。残念ながら、EntityFramework のバージョンが異なると問題が発生するようです。すべての参照は、EF 4.1.0.0 の出現について二重および三重にチェックされます。現在、すべてが EF 4.3.0.0 を unsing しています。システムのどこかに 4.1.0.0 への参照があり、それを見つけようとしているようです。成功しませんでした。

関連するすべての外部ライブラリは「copy local = true」としてマークされています

    Microsoft.WindowsAzure.ServiceRuntime Critical: 201 : Role entrypoint could not be created:
System.TypeLoadException: Unable to load the role entry point due to the following exceptions:
-- System.IO.FileLoadException: Die Datei oder Assembly "EntityFramework, Version=4.1.0.0,      Culture=neutral, PublicKeyToken=b77a5c561934e089" oder eine Abhängigkeit davon wurde nicht gefunden.     Die gefundene Manifestdefinition der Assembly stimmt nicht mit dem Assemblyverweis überein. (Ausnahme von HRESULT: 0x80131040)
Dateiname: "EntityFramework, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"

=== Zustandsinformationen vor Bindung ===
LOG: Benutzer = COREI7\markus
LOG: DisplayName = EntityFramework, Version=4.1.0.0, Culture=neutral,   PublicKeyToken=b77a5c561934e089
 (Fully-specified)
LOG: Appbase = file:///D:/Dev/TFS/BettrFit/BettrFit.Azure/csx/Debug/roles/BettrFit/approot/bin
LOG: Ursprünglicher PrivatePath =   D:\Dev\TFS\BettrFit\BettrFit.Azure\csx\Debug\roles\BettrFit\approot\bin
Aufruf von Assembly : System.Web.Http.Data.EntityFramework, Version=4.0.0.0, Culture=neutral,  PublicKeyToken=31bf3856ad364e35.
===
LOG: Diese Bindung startet im default-Load-Kontext.
LOG: Es wurde keine Anwendungskonfigurationsdatei gefunden.
LOG: Die Hostkonfigurationsdatei wird verwendet: 
LOG: Die Computerkonfigurationsdatei von C:\Windows\Microsoft.NET\Framework64\v4.0.30319 \config\machine.config wird verwendet.
LOG: Verweis nach der Richtlinie: EntityFramework, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
LOG: Download von neuem URL   file:///D:/Dev/TFS/BettrFit/BettrFit.Azure/csx/Debug/roles/BettrFit/approot/bin/EntityFramework.DLL.
WRN: Der Vergleich des Assemblynamens führte zum Konflikt: Nebenversion.
ERR: Das Setup der Assembly konnte nicht abgeschlossen werden (hr = 0x80131040). Die Suche wurde beendet.

 ---> System.Reflection.ReflectionTypeLoadException: Mindestens ein Typ in der Assembly kann  nicht geladen werden. Rufen Sie die LoaderExceptions-Eigenschaft ab, wenn Sie weitere Informationen  benötigen.
   bei System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
   bei System.Reflection.RuntimeModule.GetTypes()
   bei System.Reflection.Assembly.GetTypes()
   bei Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.GetRoleEntryPoint(Assembly    entryPointAssembly)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.GetRoleEntryPoint(Assembly  entryPointAssembly)
   bei Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.CreateRoleEntryPoint(RoleType roleTypeEnum)
   bei Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.InitializeRoleInternal(RoleType    roleTypeEnum)
Das Programm "[2372] WaIISHost.exe: Verwaltet (v4.0.30319)" wurde mit Code -1 (0xffffffff) beendet.

この問題を解決する方法についてのヒントを教えていただければ幸いです。

Data.EntityFramework アセンブリを調査しました。

Assembly a = System.Reflection.Assembly.Load("System.Web.Http.Data.EntityFramework, Version=4.0.0.0, Culture=neutral,  PublicKeyToken=31bf3856ad364e35");

foreach (AssemblyName i in a.GetReferencedAssemblies())
{
     Trace.TraceInformation("Ref Assemblies:" + i.Name+" "+i.Version);
}

デフォルトとしてEntityFramework 4.1.0.0に依存していることを示しています。 どうすればそれを変更できますか?読み込み時に Web.Config が使用されていないようです - ここで、既に再バインドを試みました。

4

2 に答える 2

2

Web-Role Project で app.config ファイルを提供することで修正しました。Azure Startup-Code は、通常使用される Web.Config ではなく、App.Config ファイルを使用しているようです。

私の app.config は、ランタイム/アセンブリ参照のリダイレクト バインディング コードを追加します。

于 2012-05-02T12:06:51.047 に答える
0

アセンブリ リダイレクトを使用して 4.1.0.0 を 4.3.0.0 にリダイレクトしてみてください。

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
      <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
      <bindingRedirect oldVersion="4.0.0.0 - 4.2.0.0" newVersion="4.3.0.0"/>
    </dependentAssembly>
  </assemblyBinding>
</runtime>

よろしくお願いします、

明徐。

于 2012-05-01T06:32:20.823 に答える