1
I am developing a web application in Asp.net and need to save a monetary value in decimal format in C# and store it in postgre in Numeric format, and the value is great. It’s a need that came up in my system... I’m wearing a field entry mask (C#):
NomeDoField.mask('000.000.000.000.000,00', { reverse: true });
I tried to set the field type in postgre to Numeric(15.2), but gives error when saving.
Forgive me for the simplicity of the question, as it is the first time I work with fields like this in C#/Postgre.
Thank you :)
Thanks for the help @Danizavtz!!! It worked perfectly now! I am very grateful :)
– Master JR