エラーをクライアントに返す方法が心配です。
HttpResponseExceptionをスローしてすぐにエラーを返すかときにを
public void Post(Customer customer)
{
if (string.IsNullOrEmpty(customer.Name))
{
throw new HttpResponseException("Customer Name cannot be empty", HttpStatusCode.BadRequest)
}
if (customer.Accounts.Count == 0)
{
throw new HttpResponseException("Customer does not have any account", HttpStatusCode.BadRequest)
}
}
または、すべてのエラーを蓄積してからクライアントに送り返します。
public void Post(Customer customer)
{
List<string> errors = new List<string>();
if (string.IsNullOrEmpty(customer.Name))
{
errors.Add("Customer Name cannot be empty");
}
if (customer.Accounts.Count == 0)
{
errors.Add("Customer does not have any account");
}
var responseMessage = new HttpResponseMessage<List<string>>(errors, HttpStatusCode.BadRequest);
throw new HttpResponseException(responseMessage);
}
これは単なるサンプルコードであり、検証エラーまたはサーバーエラーのどちらでもかまいません。各アプローチのベストプラクティス、長所と短所を知りたいだけです。
HttpResponseException
あなたの投稿で言及された2つのパラメーターを取るクラスのコンストラクターオーバーロードを取得していません- HttpResponseException("Customer Name cannot be empty", HttpStatusCode.BadRequest)
すなわちHttpResponseException(string, HttpStatusCode)
ModelState
。