Can't show the data in form
try to rename your action to Index
[Route("~/home/index")]
public IActionResult Index()
{
var product = new Products() {
ProductName = "name",
Quantity = 5
};
return View(product);
}