No compatible provider found (EF6)
Posted: Wed 05 Mar 2014 13:25
I'm currently evaluating the Devart Oracle provider (Professional, 30-day trial) using VS2013 and latest (stable) Entity Framework, which is 6.0.2 at the time of writing. I started out with a fresh solution, pulled in EF via Nuget added provider and factory in my App.config and then tried to add a new EDMX. Data connection went fine (via dotConnect for Oracle) but there appears to be no support for EF6 after all, as I'm prompted with the following message:
Your project references the latest version of Entity Framework; however, an Entity Framework database provider compatible with this version could not be found for your data connection.
(this is on the wizard page where I'm supposed to choose a version for EF, with 6.0 as the only option but that option is disabled).
Here's my App.config:
Any hints what I'm missing here?
Your project references the latest version of Entity Framework; however, an Entity Framework database provider compatible with this version could not be found for your data connection.
(this is on the wizard page where I'm supposed to choose a version for EF, with 6.0 as the only option but that option is disabled).
Here's my App.config:
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<providers>
<provider invariantName="Devart.Data.Oracle" type="Devart.Data.Oracle.Entity.OracleEntityProviderServices, Devart.Data.Oracle.Entity, Version=8.2.103.6, Culture=neutral, PublicKeyToken=09af7300eec23701" />
</providers>
<system.data>
<DbProviderFactories>
<remove invariant="Devart.Data.Oracle" />
<add name="dotConnect for Oracle" invariant="Devart.Data.Oracle" description="Devart dotConnect for Oracle" type="Devart.Data.Oracle.OracleProviderFactory, Devart.Data.Oracle, Version=8.2.103.0, Culture=neutral, PublicKeyToken=09af7300eec23701" />
</DbProviderFactories>
</system.data>
</entityFramework>
</configuration>