I have installed 2 versions of ODAC (Oracle Data Access Client), so I can see there're two assemblies in the GAC. Now I am trying to use the old one which is 4.112.2.0, but no matter how I did, the version which is used is always the latest one (4.112.3.0). I even tried getting the assembly using the code below:
Assembly asb = Assembly.LoadFrom(@"Oracle.DataAccess.dll");
Console.WriteLine(asb.FullName);
However, I still saw the "4.112.3.0"... What's the problem here?
Thank you for any advice in advance.