System.Data.SQLite

Check-in [8d98582107]
Login

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

Overview
Comment:Fix for previous check-in: missed one place where the default provider should be EF6 enabled.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 8d98582107e383c47955c4473d302e4ffa7915ec
User & Date: mistachkin 2014-09-04 18:42:48.206
Context
2014-09-05
17:49
Refactor and simplify NuGet packages in order to support per-solution SQLite interop assembly files. Thanks to David Archer for his suggestions, feedback, and contributions. check-in: bd4e9309ea user: mistachkin tags: trunk
2014-09-04
18:42
Fix for previous check-in: missed one place where the default provider should be EF6 enabled. check-in: 8d98582107 user: mistachkin tags: trunk
18:32
More work on getting the design-time components to detect and use the EF6 enabled provider. Cherrypick of [30c1589da7] (check-in on wrong branch). check-in: c43018f34e user: mistachkin tags: trunk
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to SQLite.Designer/SQLiteOptions.cs.
135
136
137
138
139
140
141



142

143
144
145
146
147
148
149
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153







+
+
+

+







        /// <returns>
        /// The configured ADO.NET provider name for System.Data.SQLite -OR-
        /// the default ADO.NET provider name for System.Data.SQLite in the
        /// event of any failure.  This method cannot return null.
        /// </returns>
        public static string GetProviderName()
        {
#if NET_40 || NET_45 || NET_451
            return GetProviderName(Ef6ProviderName);
#else
            return GetProviderName(LegacyProviderName);
#endif
        }

        ///////////////////////////////////////////////////////////////////////

        /// <summary>
        /// This method determines the name of the ADO.NET provider for the
        /// System.Data.SQLite design-time components to use.