0
ModelState属性のキーを変更する方法はありますか?ModelState MVC属性のキー/値のペアを変更します
{"Message":"The request is invalid.",
"ModelState":
{
"supplier.SupplierWarehouses[2].Location":["Location name is too long, maximum 50 characters"]
}
}
私はsupplier.SupplierWarehousesを変更したい[2] SupplierLocationのようなよりシンプルなものに.Location:私は、次のようなJSONレスポンスを受信します。
モデルでこれを直接行う方法はありますか?現在のモデル:
public class SupplierWarehouseMetadata
{
[StringLength(50,ErrorMessage="Location name is too long, maximum 50 characters")]
public string Location { get; set; }
}