Bill Boga
Bill Boga
The only time I seem to get this error is when trying to re-route Firefox (v56.0).
I can't duplicate the exception-scenario mentioned in "Expected behaviour". May you post a sample project as a ZIP-file or the stack trace from the exception? When I use `[FromBody]` and...
Thanks for the sample repo. I've identified a couple issues and should be able to get an update pushed soon. - New behavior will return failures created by ASP.NET's `BodyModelBinder`....
The forthcoming update will fix those problems, but without registering the service, even submitting a request like the following won't trigger the expected binding: ```json { "model": { "value": 1...
I'll have to spin-up a sample project to see what's going on. Will try and get to it this week.
@JamesCrann: here's a sample that works with `Swashbuckle.AspNetCore` `v4.0.1`. `v5.x` works completely different. I may eventually incorporate this logic in some kind of `HybridModelBinding.Swashbuckle` package. If I do, I'll make...
Thanks, @dkimbell13, for the update/code sample. I haven't forgotten about this issue. Been going through and doing some house-cleaning on the project today. I've got a list of TODOs getting...
No official release notes 😞. The bulk of changes came from https://github.com/billbogaiv/hybrid-model-binding/pull/45. This change-set added features to allow class-level bind-ordering (so this doesn't need explicitly defined on each property) and...
I'll step through code using that `gist` later today... I'm stumped 🤔.
I've identified the problem, but am not sure there will be a fix... ## TL;DR ### Explicitly set the binding of the affected properties so `Source.Body` is not included or...