aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/app.config
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-03-01 18:47:51 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-03-01 18:47:51 +0200
commit1e0bf3a26354f8a0f1e21990ec07706427a0761f (patch)
tree87cf5b00078dba68c7c356735150de783e2b8774 /Software/Visual_Studio/Tango.BL/app.config
parentf01b4d59ea6456fd7e46b447162835de387757bb (diff)
downloadTango-1e0bf3a26354f8a0f1e21990ec07706427a0761f.tar.gz
Tango-1e0bf3a26354f8a0f1e21990ec07706427a0761f.zip
Some work on loading local mdf db using SqlLocalDb.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/app.config')
-rw-r--r--Software/Visual_Studio/Tango.BL/app.config26
1 files changed, 26 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/app.config b/Software/Visual_Studio/Tango.BL/app.config
new file mode 100644
index 000000000..5c48aeb85
--- /dev/null
+++ b/Software/Visual_Studio/Tango.BL/app.config
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+
+ <configSections>
+ <section name="entityFramework"
+ type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
+ requirePermission="false"/>
+ </configSections>
+ <entityFramework>
+ <providers>
+ <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6"/>
+ </providers>
+ </entityFramework>
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly>
+ <assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral"/>
+ <bindingRedirect oldVersion="0.0.0.0-1.0.106.0" newVersion="1.0.106.0"/>
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+<system.data>
+ <DbProviderFactories>
+ <remove invariant="System.Data.SQLite.EF6"/><add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6"
+ description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6"/></DbProviderFactories>
+ </system.data></configuration> \ No newline at end of file