Remove the below refence entries to the ODAC in the <machine.config>
<DbProviderFactories> <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
Edit the <ComposeCtl.exe.config>, and add the above entry along with the additional "remove invariant " row quoted below under the matching <DbProviderFactories>.
The file should read like this:
<system.data>
<DbProviderFactories>
<remove invariant="Oracle.ManagedDataAccess.Client" />
<add name="SQLite Data Provider" invariant="System.Data.SQLite"
description=".Net Framework Data Provider for SQLite"
type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite"/>
<add name="Oracle.DataAccess" invariant="Oracle.DataAccess.Client"
description="Oracle Data Provider for .NET, Unmanaged Driver"
type="Oracle.DataAccess.Client.OracleClientFactory, Oracle.DataAccess,
Version=4.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</DbProviderFactories>
</system.data>