I'm using Entity framework 5 with Oracle.ManagedDataAccess 19.11.0, and when i'm trying to add migration i'm getting this error :
at System.Data.Entity.Migrations.Design.ToolingFacade.BaseRunner.Run()
An error occurred while getting provider information from the database.
This can be caused by Entity Framework using an incorrect connection string. Check the inner exceptions for details and ensure that the connection string is correct.
my connection string is as below :
<add name="myDB" connectionString="Data Source=PAD;Persist Security Info=True;User ID=USRX;Password=XXXX;" />
please note that application works fine, only the add-migration
that doesn't work .