1

我正在从 EF4 到 EF5 进行 Silverlight / WCF RIA 服务项目。目标是.NET4.5

这是一个尖峰 - 我正在使用 DB First 方法。即创建edmx,然后使用域服务类向导

在此处输入图像描述

所以看起来不错

  • 实体框架 (5.0.0.0)
  • Microsoft.ServiceModel.DomainServices.EntityFramework (4.0.0.0) DbDomainService 在这里
  • System.Data.Entity (4.0.0.0)

与旧方式相反:

  • 实体框架 (5.0.0.0)
  • System.Data.Entity (4.0.0.0)
  • System.ServiceModel.DomainServices.EntityFramework (4.0.0.0) LinqToEntitiesDomainService 在这里

在此处输入图像描述

然后放了一个简单的 UI 来访问 2 表 db 并且它工作 在此处输入图像描述

问题: 这个 web.config 不是我所期望的:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <sectionGroup name="system.serviceModel">
      <section name="domainServices" type="System.ServiceModel.DomainServices.Hosting.DomainServicesSection, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" allowDefinition="MachineToApplication" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <system.web>
    <httpModules>
      <add name="DomainServiceModule" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    </httpModules>
    <compilation debug="true" targetFramework="4.5">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      </assemblies>
    </compilation>
   <!-- profile stuff commented out-->
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true">
      <add name="DomainServiceModule" preCondition="managedHandler" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    </modules>
  </system.webServer>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <connectionStrings>
    <add name="DefaultConnection" connectionString="Data Source=(LocalDB)\v11.0;Initial Catalog=aspnet-BusinessApplication5.Web-20130603151851;Integrated Security=True" providerName="System.Data.SqlClient" />
    <add name="TestDBEntities" connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=.\SQLEXPRESS;initial catalog=TestDB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
</configuration>

我期望必须投入:

  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>

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

从以下获得这些配置。也许它们都是特定于 codefirst 的。 https://github.com/jeffhandley/riabooks

http://jeffhandley.com/archive/2012/12/10/RIA-Services-NuGet-Package-Updates-ndash-Including-Support-for-EntityFramework.aspx

http://mcasamento.blogspot.co.uk/2012/10/entity-framework-5-code-first-and-wcf.html

4

1 回答 1

2

RIA 服务 dll 是针对 EF 4 而不是 EF5 编译的,因此绑定重定向用于使一切正常工作。如果/当 RIA 服务开源时,将会有一个新版本的 RiaServices.EntityFramework 将针对 EF 5 和 EF 6 进行编译。开源的好处之一是能够根据我的需要发布尽可能多的 NuGet 包支持所有组合。

于 2013-06-03T18:45:37.370 回答