When code reach .Open() method of OracleConnection object, it throw null exception, can't get why. Here is code:
using (OracleConnection connection = new OracleConnection($"User Id={dbLogin};Password={dbPass};Persist Security Info=False;Data Source={server}"))
{
connection.Open();
}
All info being passed to connection string correctly. This sutiation happend when i'm trying to migrate from .Net oracle to ODA.NET, using Oracle.DataAccess v 4.0.3
Default System.Data.Oracle correctly opens the connection with that conenction string. Read mostly all topics about migration, no luck so far.