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

540
Visualizações
Deserialize a JSON string integer to an Enum in ASP.NET Core

I'm creating an ASP.NET Core API and my users have a role, like so

class User
{
    public Guid Id {get; set;}

    public string Email {get; set;}

    public Role Role {get; set;}
}

enum Role : byte
{
    User = 0,
    Administrator = 1
}

The problem now is, that my user CreateOrUpdate endpoint is getting this JSON data

{
    "id": "2abe50d6-4c81-4ace-ad95-c8182d4384a3",
    "email": "someEmail@example.org",
    "role": "0"
}

Here's the problematic endpoint declaration

public User CreateOrUpdate([FromBody] User user)
{
    // ...
}

And it fails to deserialize this, and as such returns HTTP 400 Bad Request. But, if I remove the quotation marks around the 0 of the role property, it works like a charm.

So, how do I get ASP.NET Core to deserialize the "0" to a 0 and as such to the enum variant User?

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

0

From How to customize property names and values with System.Text.Json - Enum as string.

By default, System.Text.Json convert enum from integer, but in you case "0" is a string. You need specify a converter to convert enum from string like :

public void ConfigureServices(IServiceCollection services)
{

    services.AddControllers().AddJsonOptions(o =>
    {
        o.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
        o.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
    });
}
over 4 years ago · Santiago Trujillo Relatório

0

You have to write your own converter. Depending, if you're using either Newtonsoft or Microsoft.Json.Text the implementation are more or less the same, but you have to take care to use the classes and properties out of the right namespace and do not mix them.

Depending on your usage you can take a look into the original code of the StringEnumConverter either at Microsoft or Newtonsoft and write your own based on that.

In your class you can then apply this converter by using the corresponding attribute to the specific attribute.

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