defaultconnectionfactory

defaultconnectionfactory

我最近使用 Entity Framework 4.3创建了一个新的Web项目。我正在使用数据库优先设计。

Entity Framework 将此部分添加到了我的web.config中,它提供了一些引用性错误消息。我在某处读到该代码与代码优先设计有关-我需要它-我只是将其删除吗?

<entityFramework>
  <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlCeConnectionFactory, EntityFramework">
    <parameters>
      <parameter value="System.Data.SqlServerCe.4.0" />
    </parameters>
  </defaultConnectionFactory>
</entityFramework>

谢谢。

最佳答案

如果您不使用CodeFirst,我不确定100%是否重要(尝试将其删除,看看它是否运行正常)。但是,如果您使用CodeFirst并将SQLCE 4.0用作主数据库,则需要保留它。参见docs:

关于asp.net - Entity Framework defaultconnectionfactory,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14457375/

10-09 01:09