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: |
2d04257fb1162b4eb20e0ecb2023de0a |
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
Changes to testlinq/NetStandard21/EF6/App.config.
1 2 3 4 5 6 | <?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> | | | 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="data source=northwindEF.db"" 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> |