I'm doing an Insert in the Firebird database in a UnitUnit (decimal) field, but the decimal places in the table do not appear.
C # code:
public decimal ValorUnitario { get; set; }
produto.ValorUnitario = Convert.ToDecimal(5.50);
string sql = $"INSERT INTO PRODUTO(VALOR_UNITARIO)VALUES('{produto.ValorUnitario}');
In the database insert UnitUnvalue = 55