I have a view where I calculate a value based on other columns' values. The result should be a Number(38,8 ) but is listed in Oracle (I use TOAD) as being a "Number" (i.e. floating point value) and is being seen by LLBLGen as a Number(38,0) which causes a truncation of the data.
Is there a way to tell the code generator to use Number(38,8 ) or an equivalent when generating code so that I don't lose precision?