-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.config
26 lines (21 loc) · 1.41 KB
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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="testDB" connectionString="Server=10.245.0.131;Database=BulkInsertTest;User Id=BulkInsertUser;Password=1234" providerName="System.Data.SqlClient"/>
<!--<add name="testDB" connectionString="Server=.\SQLEXPRESS;Database=BulkInsertTest;Trusted_Connection=True;" providerName="System.Data.SqlClient"/>-->
<!--<add name="testDB" connectionString="Server=je-sql-qa21.just-eat.local;Database=BulkInsertTest;User Id=ServerConfig;Password=cultnot4sale" providerName="System.Data.SqlClient"/>-->
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>