Entity Framework 使用 -ConnectionString 更新数据库
Entity Framework Update-Database with -ConnectionString
我们的 web,config 对开发和生产使用相同的连接名称,唯一的区别是连接字符串本身。
我想为使用命令中提供的指定连接的开发和生产创建更新数据库命令。
我 运行 PM> get-help Update-Database -detailed
但没有看到任何与我正在尝试做的相关的例子。
我的问题:ConnectionString 中需要包含哪些参数?显然我需要初始目录、数据源、用户 ID 和密码。不过,不确定其他人。我什至需要连接名称吗?
update-database
-ConnectionStringName MyConn
-ConnectionString data source=10.10.10.20;
initial catalog=MyDatabase;
persist security info=False;
user id=my_db_user;
password=1234;
max pool size=200;
MultipleActiveResultSets=True"
providerName="System.Data.SqlClient
您是否考虑过使用 web.config 转换?
https://msdn.microsoft.com/en-us/library/dd465326%28v=vs.110%29.aspx
在您的 Web.Release.config 文件中,您将拥有如下条目:
<connectionStrings>
<add name="MyDbName" connectionString="Data Source=10.10.10.20; Initial Catalog=MyDatabase; User Id=my_db_user; Password=1234;"
xdt:Locator="Match(name)" xdt:Transform="SetAttributes" />
</connectionStrings>
使用xdt:Transform="SetAttributes"
意味着您不需要再次指定提供程序,只有连接字符串会在您的转换后发生变化web.config
1) 最低限度为:
DataSource
/Server
/Address
/Addr
/Network Address
Initial Catalog
/ Database
User Id
/ UID
+ Password
/ PWD
或 Integrated Security = true
2)默认值将用于其他未指定的参数:
3) ConnectionStringName
仅当您希望从 web.config 或 app.config
中定义的连接字符串中获取连接字符串时才需要
我们的 web,config 对开发和生产使用相同的连接名称,唯一的区别是连接字符串本身。
我想为使用命令中提供的指定连接的开发和生产创建更新数据库命令。
我 运行 PM> get-help Update-Database -detailed
但没有看到任何与我正在尝试做的相关的例子。
我的问题:ConnectionString 中需要包含哪些参数?显然我需要初始目录、数据源、用户 ID 和密码。不过,不确定其他人。我什至需要连接名称吗?
update-database
-ConnectionStringName MyConn
-ConnectionString data source=10.10.10.20;
initial catalog=MyDatabase;
persist security info=False;
user id=my_db_user;
password=1234;
max pool size=200;
MultipleActiveResultSets=True"
providerName="System.Data.SqlClient
您是否考虑过使用 web.config 转换?
https://msdn.microsoft.com/en-us/library/dd465326%28v=vs.110%29.aspx
在您的 Web.Release.config 文件中,您将拥有如下条目:
<connectionStrings>
<add name="MyDbName" connectionString="Data Source=10.10.10.20; Initial Catalog=MyDatabase; User Id=my_db_user; Password=1234;"
xdt:Locator="Match(name)" xdt:Transform="SetAttributes" />
</connectionStrings>
使用xdt:Transform="SetAttributes"
意味着您不需要再次指定提供程序,只有连接字符串会在您的转换后发生变化web.config
1) 最低限度为:
DataSource
/Server
/Address
/Addr
/Network Address
Initial Catalog
/Database
User Id
/UID
+Password
/PWD
或Integrated Security = true
2)默认值将用于其他未指定的参数:
3) ConnectionStringName
仅当您希望从 web.config 或 app.config