Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

245
Visualizações
C# Simplify null check condition

How to simplify the null check

public class MyEmployee
{
    public string FirstName;
    public string LastName;
    public string Age;
    public string Phone;
    public string Gender;
}

I have implemented the following null condition check

public async Task<bool> ValidateClient(MyEmployee Client)
{
    **if(Client.FirstName == null ||Client.LastName==null ||Client.Age== null ||Client.Gender ==null||Client.Phone==null)**
    {
      throw new Argumentexception("Employee details to be provided")
    }
}

I am validating all the properties of Employee class with a null check condition , can this be simplified in C#.

over 4 years ago · Santiago Trujillo
2 Respostas
Responde à pergunta

0

Since you're using asp.net core, you'll have the option to validate you model by decorating the properties:

public class MyEmployee
{
    [Required]
    public string FirstName;
    [Required]
    public string LastName;
    [Required]
    public string Age;
    [Required]
    public string Phone;
    [Required]
    public string Gender;
}

if you have that, you can validate the model from within a HTTP action call.

public async Task<IActionResult> OnPostAsync(MyEmployee model)
{
    if (!ModelState.IsValid)
    {
        return BadRequest();
    }
    await yourUpdate();
    return Ok();
}

Note: this only works when you're using the model binders, which are enabled by default in the MVC and API actions.

There are various validation attributes available. Adding for example StringLength gives you the option to validate also for a length > 0.

Various defaults and regex options are available as well.

It puts the validation close to your model and leave you with a nice clean ActionResult method.

Also see Microsoft docs

More build in attributes:

Built-in attributes

Here are some of the built-in validation attributes:

  • [ValidateNever]: Indicates that a property or parameter should be excluded from validation.
  • [CreditCard]: Validates that the property has a credit card format. Requires jQuery Validation Additional Methods.
  • [Compare]: Validates that two properties in a model match.
  • [EmailAddress]: Validates that the property has an email format.
  • [Phone]: Validates that the property has a telephone number format.
  • [Range]: Validates that the property value falls within a specified range.
  • [RegularExpression]: Validates that the property value matches a specified regular expression.
  • [Required]: Validates that the field isn't null. See [Required] attribute for details about this attribute's behavior.
  • [StringLength]: Validates that a string property value doesn't exceed a specified length limit.
  • [Url]: Validates that the property has a URL format.
  • [Remote]: Validates input on the client by calling an action method on the server. See [Remote] attribute for details about this attribute's behavior.

There are tons of these, and you can even build them yourself as well.

over 4 years ago · Santiago Trujillo Relatório

0

With Linq you can separate data from operation

if(new[] { Client.FirstName, Client.LastName, ..., Client.Phone }
   .Any(field => field is null))
  • First you define a collection of strings by listing all the string properties of your DTO
  • Then you perform a simple null check against the previous collection for each element

UPDATE #1: Checking for empty string as well

if(new[] { Client.FirstName, Client.LastName, ..., Client.Phone }
   .Any(string.IsNullOrEmpty))
  • In order to test against null or empty string you can utilize the string's IsNullOrEmpty static method
  • If you want to test against whitespaces as well then prefer string.IsNullOrWhitespace
  • The above Any is short form of .Any(field => string.IsNullOrEmpty(field))
over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda