Ho delle preoccupazioni sul modo in cui restituiamo errori al cliente.
Restituiamo immediatamente l'errore lanciando HttpResponseException quando otteniamo un errore:
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)
}
}
Oppure accumuliamo tutti gli errori e li rimandiamo al client:
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);
}
Questo è solo un codice di esempio, non importa né errori di convalida né errori del server, vorrei solo conoscere le migliori pratiche, i pro ei contro di ogni approccio.
HttpResponseException
classe che accetta due parametri menzionati nel tuo post - HttpResponseException("Customer Name cannot be empty", HttpStatusCode.BadRequest)
cioèHttpResponseException(string, HttpStatusCode)
ModelState
.