Wildly inconsistent and incorrect values...
Posted: Mon 22 Jul 2013 17:32
Given the following table fields...
The following query...
Returns the following values...
In C# EF code, I get the following values for an equivalent query...
WTF?!?
Devart.Data v5.0.701.0
Devart.Data.Oracle v7.7.242.0
Devart.Data.Oracle.Entity v7.7.242.0
Code: Select all
CREATE TABLE "EMPLOYEES" (
"EMPLOYEEID" NUMBER NOT NULL
,...
,"AVAILABLEREGULARDAYS" NUMBER NOT NULL
)The following query...
Code: Select all
SELECT EmployeeId, AvailableRegularDays
FROM Employees
WHERE IsEligible = 'Y'
ORDER BY SeniorityNumberReturns the following values...
Code: Select all
24 30
80 30
1 30
2 30In C# EF code, I get the following values for an equivalent query...
Code: Select all
24 0
80 866
1 816
2 741Devart.Data v5.0.701.0
Devart.Data.Oracle v7.7.242.0
Devart.Data.Oracle.Entity v7.7.242.0