Questions avec Tag "fluentvalidation"
0
Impossible de valider Personne<T> objet à l'aide de FluentValidation
J'ai un code comme ceci
public class Person<T>
{
public Person()
{
Result = default(T);
}
public bool IsValid { get; set; }
public T Result { get; set; }
public int StatusCode { g...