Posts by Guilherme silva • 1 point
3 posts
-
-1
votes1
answer45
viewsQ: C# How do I prevent composite name from saving more than one space?
This is my validation: [Required(ErrorMessage = "O nome completo é obrigatório.", AllowEmptyStrings = false)]…
-
-1
votes1
answer56
viewsQ: c# How to Apply Function to validate Cpf in an API?
I need a help I have a CPF validation class in C# in a registration API project, but I don’t know how to implement this function to work validation, I’m using Microsoft to add the function in…
-
0
votes1
answer36
viewsQ: how to validate for name not to receive numbers or special characters c#
How do I validate the name attribute where it does not allow numbers or special characters ? I did so but it’s not working [Required(ErrorMessage = "O campo nome é obrigatório!", AllowEmptyStrings =…