I'm recieving the error
Arithmetic operation resulted in overflow.
when running this:
using (MyEntities ctx = new MyEntities())
{
var OraLINQEX1 = from e in ctx.TABLE_A
select e;
Console.WriteLine("LINQ to Entities Result");
foreach (var result in OraLINQEX1)
{
//Console.WriteLine(String.Format("ID: {0} Name: {1}", result.FIELDA, result.FIELDB));
}
}
My database is Oracle, I'm using this reference.
I used another table and it worked. My table has many fields. The fields are varchar2 and number without size.
I know the exact record of table that generetes the error, but I don´t know how to get a more detailed message.
Please, help me.