Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Faced with NRE on `Apply` when some class passes as FromQuery param in controller action. Fixed. ```csharp //controller [HttpGet] public IActionResult TestAction([FromQuery]SomeClass some) { return Ok(); } ... //class public class SomeClass { public string Value { get; set; } } ```
- Loading branch information