0

我首先使用实体​​框架代码创建了一个数据库。

我在 app.config 中设置了数据库连接。

<connectionStrings>
<add name="DataContext"
     connectionString="Data Source=.;Initial Catalog=Automation;User ID=sa;Password=pass"
     providerName="System.Data.SqlClient" />

运行应用程序时,在服务器“。”中创建数据库。和“/SqlExpress”。

当我在其中插入数据时,它会插入“/sqlexpress”,而不是插入服务器“。”

4

1 回答 1

0

创建两个连接字符串实例。

例如

DataContext context = new DataContext(connectionstring 1);

DataContext context2 = new DataContext(connectionstring 2);

于 2013-07-25T08:41:48.803 回答