在视图模型中,我有以下列表:
public List<Foo> ListOfFoos { get; set; }
该类Foo
具有以下属性:
public int id {get; set;}
public string name {get; set;}
public int number {get; set;}
我可以使用循环输出属性Foo
中的每个对象。我希望能够在提交表单时提交编辑后的值。ListOfFoos
foreach
有没有办法做到这一点?新值是否会简单地存储在ListOfFoos
列表中?