in our application, we used UpdateAddAsync to update/Insert to SQL database tables.
This issue is sometimes, this method will double the decimal columns. after debugging the application, the sql script it produces for decimal column is as follows: “Column1” = “Column1” + @Column1. which explains why decimal column is doubling.
so is this a bug or a feature? why would UpdateAddAsync generate such script?
Environment: .net Core 3.0, ServiceStack 5.9.0
Language: C#