1
Hey, good night, man. I’m doing a job for the college in C# and I don’t have much experience. I went to run the program and the error described in the title appeared. The piece of the code is this:
public Produto BuscarProdutoPorCodigo(long codigoProduto)
{
return this.Produtos
.Where(produto => produto.Id == codigoProduto)
.FirstOrDefault();
}
public void RemoverProdutoPorCodigo(long codigoProduto)
{
this.Produtos.Remove(this.Produtos
.Where(produto => produto.Id == codigoProduto)
.FirstOrDefault());
Salvar();
}
I have tried to convert to "Int32", etc, but it did not work. Can anyone help me? Thank you.
Product.Id is which type?
– novic