I am trying to generate oracle sql for my entity framework model.
I can generate the SQLServer sql fine, the error only occurs with oracle generation.
I've installed the oracle developer tools for VS fine.
I have selected "Generate Oracle Via T4 (TPT).xaml (VS)" for the Database Generation Workflow, and "SSDLTOOracle.tt (VS)" for the DDL generation Template.
When I attempt to generate the sql from the right click menu, I get the following error repeated over and over again:
The SSDL generated by the activity called 'CsdlToSsdlAndMslActivity' is not valid and has the following errors:
Default value (false) is not compatible with the facets specified for Decimal. The value must be a decimal number with scale less than or equal to 38 and precision less than or equal to 38.
... [snip]
My model does not contain any Decimals.
I tried setting the default value of my Int32's and Double's to something other than (None)
, but that did not fix it.
Can anyone help me to resolve this issue?