如果我有一个看起来像这样的视图模型:
public class Car
{
Wheel CarWheel {get;set;}
Body CarBody {get;set;}
}
我的 Wheel 和 Body 类看起来像这样:
public class Wheel
{
int Number {get;set;}
string WheelType {get;set;}
}
public class Body
{
int Number {get;set;}
string BodyType {get;set;}
}
我想为小于 1 的轮数添加模型错误:
ModelState.AddModelError(???, "Error! You must have at least one wheel to avoid abrasion on your bottom");
如何指定错误专门针对 Wheel 类,而不是 Body 类?