I have c# webapi on .net 6.0. And I am getting postdata from client into param_class into _input. the class is like following:
public class param_class
{
public string? name { get; set; }
public object? value { get; set; }
}
client sends data as json string like following:
{
"name": "lotnum",
"value": 143
}
in webapi, when I get value field throws error JsonElement cannot convert to Int.
var v = (int)_input.value;
how to convert from JsonElement to other types in webapi of .net 6.0?