0
I’m with a mistake, when I go to make a record, I upload the information this way:
//lista
var tbuscarCategoria = new CadastroCategoriaAplicacao();
var listarCategoria = tbuscarCategoria.ListarTodos();
ViewBag.Categoria = new SelectList(listarCategoria, "IDCATEGORIA", "DESCRICAO");
In the edition of the record, I need to select the category that is in the client register, at this point I have an error:
public ActionResult AlteraRegistro(int id)
{
if (Session["id"] == null)
{
return RedirectToAction("Index", "Home");
}
try
{
var tbuscar = new CadastroClienteAplicacao();
TB_CLIENTE tbCliente = tbuscar.ListarPorID(id);
//lista
var tbuscarCategoria = new CadastroCategoriaAplicacao();
var listarCategoria = tbuscarCategoria.ListarTodos();
ViewBag.Categoria = new SelectList(listarCategoria, "IDCATEGORIA", "DESCRICAO",tbCliente.tbIDCATEGORIA.IDCATEGORIA);
return View(tbCliente);
}
catch (Exception)
{
TempData["Erro"] = "Erro ao Alterar Registro.";
return RedirectToAction("ListarRegistro", "CadastroCliente");
}
}
What error? You can edit your question?
– Leonel Sanches da Silva