What exactly is the minimum requirement to get a .NET 4.6 application working with Oracle?
We are already using the Oracle.ManagedDataAccess client. We are using the Entity Framework and also DataSets (TableAdapters,...) for data access.
Currently we always install the "full" Oracle Administrator client for our applications which has about 1,2 GB, but what is really necessary to make our application(s) working with Oracle?
The Nuget page of the Oracle.ManagedDataAccess driver says "No additional Oracle Client software is required to be installed to connect to Oracle Database." https://www.nuget.org/packages/Oracle.ManagedDataAccess/
But when I open my application in Visual Studio I get the following error:
The ADO.NET provider with invariant name 'Oracle.ManagedDataAccess.Client' is either not registered in the machine or application config file, or could not be loaded. See the inner exception for details.
I tried to figure it out in the Oracle documentation, but no chance to do so, it's so confusing.
Furthermore: A 64-bit Managed Oracle Client is also working with 32 bit applications and the other way around?