Hello!
Im using Oracle.ManagedDataAccess.Core v2.19.50 C# and getting error when trying to select data from DB link where DB link name contains "." for example:
command.CommandText = "select * from name1.name2@linkname1.linkname2";
adapter = new OracleDataAdapter(command);
dataTable = new DataTable();
adapter.Fill(dataTable);
Error message is "Index was outside the bounds of the array.".
Workarround is to declare synonym and then selection works.