System.Data.SQLite

Check-in [2d04257fb1]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix test EntityFramework connection string for use on POSIX.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | netStandard21
Files: files | file ages | folders
SHA1: 2d04257fb1162b4eb20e0ecb2023de0adc756e8c
User & Date: mistachkin 2019-10-09 22:37:10.812
Context
2019-10-09
22:42
Merge upstream changes to the Eagle shell configuration file from upstream. check-in: 6aee81788f user: mistachkin tags: netStandard21
22:37
Fix test EntityFramework connection string for use on POSIX. check-in: 2d04257fb1 user: mistachkin tags: netStandard21
20:32
Add diagnostics to the batch build tool. check-in: cde1321da5 user: mistachkin tags: netStandard21
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to testlinq/NetStandard21/EF6/App.config.
1
2
3
4
5
6
7

8
9
10
11
12
13
14
1
2
3
4
5
6

7
8
9
10
11
12
13
14






-
+







<?xml version="1.0"?>
<configuration>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
  </configSections>
  <connectionStrings>
    <add name="northwindEFEntities" connectionString="metadata=res://*/NorthwindModel.EF6.NetStandard21.csdl|res://*/NorthwindModel.EF6.NetStandard21.ssdl|res://*/NorthwindModel.EF6.NetStandard21.msl;provider=System.Data.SQLite.EF6;provider connection string=&quot;data source=.\northwindEF.db&quot;" providerName="System.Data.EntityClient" />
    <add name="northwindEFEntities" connectionString="metadata=res://*/NorthwindModel.EF6.NetStandard21.csdl|res://*/NorthwindModel.EF6.NetStandard21.ssdl|res://*/NorthwindModel.EF6.NetStandard21.msl;provider=System.Data.SQLite.EF6;provider connection string=&quot;data source=northwindEF.db&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
  <entityFramework>
    <providers>
      <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6, Version=1.0.112.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
    </providers>
  </entityFramework>
</configuration>