当使用asp.net mvc时,我需要为我的viewmodel中的每个属性提供一个隐藏字段,以便在发回时可用。我正在考虑不需要用户输入的属性,例如id
或州等。
public class viewmodel{
string id - do I need a hidden field for this
string name
string something
}
public insert(viewmodel){
I need to do something with the id here
}