We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've noticed that after adding HybridModelBinding to my project JsonProperty attributes stopped working.
JsonProperty
Below is a very simple controller that allows testing this behaviour:
namespace HybridModelBinding.Samples.Controllers { [Route("api/[controller]")] [ApiController] public class DataController : ControllerBase { [HttpPost()] public ActionResult<string> GetResCreateponse([FromHybrid]SimpleDto dto) { return Ok($"Hello {dto.Name} {dto.IsAdmin}"); } } public class SimpleDto { public string Name { get; set; } [JsonProperty("is_admin"), JsonPropertyName("is_admin")] [HybridBindProperty(Source.Body)] public bool IsAdmin { get; set; } } }
Every time I do a request I get this behavior:
When I remove AddHybridModelBinder from Startup everything works as expected.
AddHybridModelBinder
Does HybridModelBinding work when used with Newtonsoft.Json? @billbogaiv your feedback is more than welcome.
HybridModelBinding
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I've noticed that after adding HybridModelBinding to my project
JsonProperty
attributes stopped working.Below is a very simple controller that allows testing this behaviour:
Every time I do a request I get this behavior:
When I remove
AddHybridModelBinder
from Startup everything works as expected.Does
HybridModelBinding
work when used with Newtonsoft.Json?@billbogaiv your feedback is more than welcome.
The text was updated successfully, but these errors were encountered: