I have a class
public class Citizen { public long ID { get; set; } public string Name { get; set; } public long CityID { get; set; } public stri
Your code is creating multiple forms which is not good. The best way to handle this kind of scenario is the use of EditorTemplates. Checkout this link on how to do it. EditorFor() for a List of Complex Type (MVC)