Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fails to deserialize when changing naming policy. #1

Open
dulfe opened this issue Jan 31, 2022 · 0 comments
Open

Fails to deserialize when changing naming policy. #1

dulfe opened this issue Jan 31, 2022 · 0 comments

Comments

@dulfe
Copy link

dulfe commented Jan 31, 2022

The naming policy seems to be ignored.

Changing the PropertyNamingPolicy to CamelCase has no effect, it does not throw an exception and returns the object with its defaults.

For example, this test fails:

    [Fact]
    public void SerializeProperlyWhenNamingPolicyIsNotTheDefault()
    {
      var jsonString = @"{""id"":3, ""title"": ""Title""}";
      var deserializeOptions = new JsonSerializerOptions()
      {
        PropertyNamingPolicy = JsonNamingPolicy.CamelCase
      };
      deserializeOptions.SetMissingMemberHandling(MissingMemberHandling.Error);

      var response = JsonSerializer.Deserialize<WeatherForecast>(jsonString, deserializeOptions);
      
      response.Title.ShouldBe("Title");
    }

But, it works if I remove the line:

deserializeOptions.SetMissingMemberHandling(MissingMemberHandling.Error);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant