Hello,
I have a created a virtual table with a table in SQL Server as datasource to create a model-driven-app that will allow users to maintain some records. There are around 50 columns most of them varchar, int, bit and datetime.
The read and update records work, but I'm having issues to create new records. The following error is thrown:
"The conversion of a datetime2 data type to a datetime data type resulted in an out-of-range value."
I don't have any datetime2 type in my SQL Server (as I know it is not supported by Virtual tables). As a remark, all datetime columns allow null.
I have the impresion that dataverse is trying to send the default value "0001-01-01" instead of null and that's causing the issue, is there anyway I can make it work?
Thank you very much in advance.
Best regards,