EF 4.3+连接字符串启动

时间:2013-02-05 14:45:31

标签: .net entity-framework database-connection

我正在创建一个使用Code First EF with Migrations的示例性简单应用程序。我有一个上下文对象,如果还没有使用defaultConnectionFactory,它会为自己创建一个数据库。我想知道如何覆盖这些设置,以控制数据库名称。即使我注释掉defaultConnectionFactory并放入连接字符串,我仍然得到相同的旧数据库名称。为什么呢?

<?xml version="1.0" encoding="utf-8"?>
<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>

  <!--<entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  </entityFramework>-->

  <connectionStrings>
    <add name="MigrationsDemoConnection" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=MigrationsDemo;Integrated Security=true" providerName="System.Data.SqlClient" />
  </connectionStrings>  

</configuration>

1 个答案:

答案 0 :(得分:0)

数据库名称位于连接字符串中。我假设你的上下文有constructor以“MigrationsDemoConnection”作为参数。所以它使用数据库名称“MigrationsDemo”。连接字符串是更改数据库名称的位置。

您还可以使用完整连接字符串作为参数构造上下文。您可以从配置文件中获取连接字符串并更改其数据库名称,最好使用SqlConnectionStringBuilder