我有一种情况,我想在模型中只需要两个字段中的一个。
public int AutoId { get; set; }
public virtual Auto Auto { get; set; }
[StringLength(17, MinimumLength = 17)]
[NotMapped]
public String VIN { get; set; }
如果有人输入了 vin,它会在 AutoID 上的控制器中进行转换。如何强制控制器进行这样的工作?
public ActionResult Create(Ogloszenie ogloszenie) {
information.AutoId = 1;
if (ModelState.IsValid)
{
...
}..