In a database table with the fields ProductID, Description, UnitPrice, and some others. I have a screen that allows only the updating of the Unit Price field, at the time of rewriting the record in the database as it should be the routine to re-record. I did the following routine, but the Description field and others in the table were rewritten without content.
ProdutoRepositorio app = new ProdutoRepositorio();
Produto produto = new Produto();
produto.ProdutoId = codigo;
produto.PrecoUnitatio = decimal.Parse(txtPrecoUnitario.Text);
app.Atualizar(produto);
app.SalvarTodos();