I am new to Oracle, I've installed Oracle Developer Tools for Visual Studio, and after that I've added a new ADO.NET Entity Data Model, and finally i've tried to use entity framework like i used to do with sql server :
using(DbEntities dbentity = new DbEntities())
{
var test = dbentity.mytable.ToList()
}
I am getting this error :
Unable to find the requested .Net Framework Data Provider. It may not be installed.
I've read about DbProviderFactories, but i don't know which provider i should use and its right paramaters. Besides I don't have the Oracle.DataAccess.dll referenced on my project.
- this link did not help me, it talks only about sql server
I am stack at this point for hours, please do not mark as duplicate if you are not sure about the solution