var_dump()
in php
, an example, to show the infos of the objects, follow my code:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "IdFuncionario,Nome,IdDepartamento")] Funcionario funcionario)
{
if (ModelState.IsValid)
{
db.Funcionarios.Add(funcionario);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(funcionario);
}
In this case, I needed to see the object funcionario
thanks.