Hi,
I'm trying to convert my project from .Net full to .Net standard 2.0 and when I'm trying to configure Oracle DQE (obtained through nuget, wasn't shipped with original package). When I call RuntimeConfiguration.ConfigureDQE, I get the followin error :
ORMConfigurationException : No DbProviderFactory has been configured for this DQE. You have to use the DQE configuration system to register at least one DbProviderFactory.
To make sure that I use the right factory, I allocate it and use GetType() to get its name. I'm using OracleManagedDataAccess.Core 2.19.110 (from nuget).
Oracle.ManagedDataAccess.Client.OracleClientFactory clientFactory = new Oracle.ManagedDataAccess.Client.OracleClientFactory();
RuntimeConfiguration.ConfigureDQE<OracleDQEConfiguration>(c =>
c.AddDbProviderFactory(clientFactory.GetType()));