can someone help me with this error ?
I using MVC 5.2.3 and .NET 4.6. I have installed ODAC 12c Release 4 and Oracle Developer Tools for Visual Studio (12.1.0.2.4) from oracle official website here http://www.oracle.com/technetwork/topics/dotnet/utilsoft-086879.html, added NuGet packages Oracle.ManagedDataAccess, Oracle.ManagedDataAccess.EntityFramework
and that generate this providers in webconfig file:
<configSections>
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
<provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
Does anyone get this work ? What i'm missing ? Thanks for every hint
You need to install the Entity Framework Oracle provider. You can do that in two ways:
In the Package Manager Console execute the following command:
Install-Package Oracle.ManagedDataAccess.EntityFramework
Follow the instruction for NuGet ODP.NET Installation and Configuration from here
Using NuGet to Install and Configure Oracle Data Provider for .NET