I assume that since you are using DotConnect for Oracle with EF, you are returning Refcursor from the / SP function that is projected onto the data type.
You have three options for fixing the problem: 1- Change the type in the object that you are mapping to Int64. This is the simplest solution. If you are using a developer entity, just select the type in your mapping, change the type to "int64", click "OK", restore your classes.
2- Change the returned Refcursor to omit the number (10) in the number (9). This is likely to hurt performance and ultimately break something, so I would not recommend it.
to11mtm
source share