20 lines
899 B
Plaintext
20 lines
899 B
Plaintext
<configuration>
|
|
<system.data>
|
|
<!--
|
|
NOTE: The extra "remove" element below is to prevent the design-time
|
|
support components within EF6 from selecting the legacy ADO.NET
|
|
provider for SQLite (i.e. the one without any EF6 support). It
|
|
appears to only consider the first ADO.NET provider in the list
|
|
within the resulting "app.config" or "web.config" file.
|
|
-->
|
|
<DbProviderFactories>
|
|
<remove invariant="System.Data.SQLite" />
|
|
<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>
|