Hi,
I'm sorry, but unfortunately I just stumbled over another odd behavior, but in a totally different area:
We have a table "Test" with a column with the datatype Number(12,3) with the name "Duration". The resulting Entity "TestEntity" has a column "Duration" with double a C# type.
Now I do the following:
var test = new TestEntity
{
Duration = 613.444d
};
Console.WriteLine(test.Duration);
In LLBLGen 5.8.3 the output is, as I would expect, "613.444". But the odd thing is, in LLBLGen 5.10.1 (our current used version), the output is "613,443". That is not expected since 613.444 should not trigger an overflow at all. (It also let some integration tests fail )
Can you help us with this?