C# WinFor 项目链接数据库问题
刚刚拿到一个C#小程序,想在自己的电脑上运行并导入数据。但是我原来没有接触过EF,想问问大家怎么把这个项目的数据库链接匹配到自己的SQL SERVER上面。
下面是App.config里面的代码
<?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>
<connectionStrings>
<add name="eng__.Properties.Settings.eng__ConnectionString" connectionString="Data Source=localhost;Initial Catalog=eng++;Integrated Security=True" providerName="System.Data.SqlClient" />
<add name="engcEntities" connectionString="metadata=res:///engcDB.csdl|res:///engcDB.ssdl|res://*/engcDB.msl;provider=System.Data.SqlClient;provider connection string="data source=涛之笔记SQLEXPRESS;initial catalog=eng++;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" /></connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论