-
-
Save stormwild/c90acd9226ad7636507e6696de04a228 to your computer and use it in GitHub Desktop.
Validator inheritance for polymorphic DTOs.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
JsonPolymorphic(TypeDiscriminatorPropertyName = "_t"), | |
JsonDerivedType(typeof(MultiChoiceQuestionRequest), "mcq"), | |
JsonDerivedType(typeof(RatingQuestionRequest), "rq") | |
] | |
public class BaseQuestionRequest | |
{ | |
public int Id { get; set; } | |
} | |
public class BaseQuestionRequestValidator : Validator<BaseQuestionRequest> | |
{ | |
public BaseQuestionRequestValidator() | |
{ | |
RuleFor(r => r.Id).NotEmpty(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MultiChoiceQuestionRequest : BaseQuestionRequest | |
{ | |
public string Question { get; set; } | |
} | |
public class MultiChoiceQuestionRequestValidator : Validator<MultiChoiceQuestionRequest> | |
{ | |
public MultiChoiceQuestionRequestValidator() | |
{ | |
Include(new BaseQuestionRequestValidator()); | |
RuleFor(r => r.Question).NotEmpty(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"questions" : [ | |
"_t" : "mcq", | |
"id" : 1, | |
"question" : "question text" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RatingQuestionRequest : BaseQuestionRequest | |
{ | |
public int Rating { get; set; } | |
} | |
public class RatingQuestionRequestValidator : Validator<RatingQuestionRequest> | |
{ | |
public RatingQuestionRequestValidator() | |
{ | |
Include(new BaseQuestionRequestValidator()); | |
RuleFor(r => r.Rating).GreaterThan(1); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"questions" : [ | |
"_t" : "rq", | |
"id" : 1, | |
"rating" : 2 | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Request | |
{ | |
public List<BaseQuestionRequest> Questions { get; set; } = []; | |
} | |
public class Validator : Validator<Request> | |
{ | |
public Validator() | |
{ | |
RuleForEach(x => x.Questions).SetInheritanceValidator( | |
v => | |
{ | |
v.Add(new MultiChoiceQuestionRequestValidator()); | |
v.Add(new RatingQuestionRequestValidator()); | |
}); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed class MyEndpoint : Endpoint<Request> | |
{ | |
public override void Configure() | |
{ | |
Post("echo"); | |
AllowAnonymous(); | |
} | |
public override async Task HandleAsync(Request r, CancellationToken c) | |
{ | |
await SendAsync(r); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment