Questions tagged [.net-7.0]

Please utilize this tag for inquiries that pertain specifically to version 7.0 of the .NET platform. If you have more general questions about the .NET Framework, please use the .net tag instead.

Guidelines on configuring JsonSerializerOption on a request-specific basis

I have developed a .NET 7 web api with an endpoint that fetches user data. public class User { public Guid? Id { get; set; } public String? Name { get; set; } public Int32? Age { get; set; } public String? HairColor { get; set; } } When th ...