加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.config 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
李涛 提交于 2019-10-23 12:21 . 重构
<?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=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission="false"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7"/>
</startup>
<entityFramework>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
</providers>
</entityFramework>
<connectionStrings>
<add name="EHCEntities"
connectionString="data source=192.168.10.152;initial catalog=EHC_Test;persist security info=True;user id=sa;password=jkgly@163.com@152;MultipleActiveResultSets=True;App=EntityFramework"
providerName="System.Data.SqlClient"/>
<!--<add name="" connectionString="data source=(LocalDb)\MSSQLLocalDB;initial catalog=HIS.EHC.EHCEntities;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />-->
</connectionStrings>
</configuration>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化