just got a C-sharp Mini Program who wants to run it on his computer and import data. But I haven"t contacted EF, before and want to ask you how to match the database link of this project to your own SQL SERVER.
the following is the code in 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=engPP;Integrated Security=True" providerName="System.Data.SqlClient" />
< 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 >