EntityFramework在哪里获取到本地数据库的连接字符串?

时间:2015-06-11 19:38:09

标签: c# entity-framework asp.net-identity

我创建了一个使用Identity的注册表单的Web表单。表单调用后面的代码如下:

protected void CreateUser_Click(object sender, EventArgs e)
{
    var userStore = new UserStore<IdentityUser>();
    var manager = new UserManager<IdentityUser>(userStore);

    var user = new IdentityUser() { UserName = UserName.Text };
    IdentityResult result = manager.Create(user, Password.Text);

    if (result.Succeeded)
    {
        StatusMessage.Text = string.Format("User {0} was created successfully!", user.UserName);
    }
    else
    {
        StatusMessage.Text = result.Errors.FirstOrDefault();
    }
}

我的网络配置文件就是这样:

<?xml version="1.0" encoding="utf-8"?>
<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>
    <system.web>
        <authentication mode="Forms" /> 
        <roleManager enabled="true" />
        <compilation debug="true" targetFramework="4.5" /> 
        <httpRuntime targetFramework="4.5" />
    </system.web>
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <dependentAssembly>
                <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
                <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
            </dependentAssembly>
        </assemblyBinding>
    </runtime>
</configuration>

我的机器上也安装了MS SQL Express。当我使用表单时,应用程序在SQLExpress中创建一个名为DefaultConnection的数据库。

我的问题是entity / identity / .net是如何知道我的数据库的,因为我没有明确地写任何连接字符串?

如果这在某种程度上是'约定优于配置'的特征,那么我该如何将实体明确地指向另一个数据库呢?

编辑:

我尝试过添加

<add name="MyConnection"
  connectionString="[the connection string];TrustServerCertificate=False"
  providerName="System.Data.SqlClient" />`

连接字符串并更新了我的创建用户代码:

...
var connString = ConfigurationManager.ConnectionStrings["MyConnection"].ConnectionString;
var context = new System.Data.Entity.DbContext(connString);

var userStore = new UserStore<IdentityUser>(context);
var manager = new UserManager<IdentityUser>(userStore);
...

但是这引起了InvalidOperationException以下消息:

Additional information: The entity type IdentityUser is not part of the model for the current context.

上次修改:

找出如何避免异常,改变了这个:

var context = new System.Data.Entity.DbContext(connString);

进入这个:

var context = new Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext(connString);

1 个答案:

答案 0 :(得分:4)

按照惯例,将在本地SQL Server实例上创建本地数据库。

请参阅:Code First to a New Database - MSDN

  

按照惯例,DbContext为您创建了一个数据库。

     
      
  • 如果本地SQL Express实例可用(默认情况下使用Visual Studio 2010安装),则Code First已在该实例上创建数据库
  •   
  • 如果SQL Express不可用,则Code First将尝试使用LocalDb(默认情况下安装在Visual Studio 2012中)
  •   
  • 数据库以派生上下文的完全限定名称命名
  •   

您可以通过在web.config中指定显式连接字符串来完成它,例如:

<configuration>
  <connectionStrings>
    <add name="MyDBContext"
         connectionString="Data Source=SQLServerAddress;Integrated Security=SSPI;Initial Catalog=yourdbName"
         providerName="System.Data.SqlClient" />
  </connectionStrings>
</configuration>

请记住将名称更改为代码中扩展DbContext的类。

例如,如果您将DbContext扩展为:

public class MyDBContext : DbContext

然后使用MyDBContext作为配置中连接字符串的键。

或者当然你可以在构造函数中传递连接字符串:

namespace MyCodeFirstProject 
{     
    public class MyDBContext: DbContext     
    {         
        public MyDBContext() : 
            base("Data Source=SQLServerAddress;Integrated Security=SSPI;Initial Catalog=yourdbName") {}
    }
}