### Is there an existing issue for this? - [x] I have searched the existing issues ### Describe the bug I have this class ``` public class GetAuditTrail { public string Section { get; set; } public string Command { get; set; } public int? Page { get; set; } public int? PageSize { get; set; } } ``` and in controller I have ``` public async Task<IActionResult> GetAuditTrail([FromQuery] GetAuditTrail command, CancellationToken cancellationToken){ } ``` and now when hitting controller with command in query params in the request does not bind the query params with model `https://10.0.10.4/api/auditTrail?pageSize=100 this works` `https://10.0.10.4/api/auditTrail?pageSize=100&command=test //model binding does not work` ### Expected Behavior Expect model binding to work ### Steps To Reproduce _No response_ ### Exceptions (if any) _No response_ ### .NET Version 8.0.204 ### Anything else? _No response_