在视图模型中,我有以下列表:
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
列表中?