Controller method doesn't catch object routes from redirect
问题 I'm sending data from form to my Test method and the data is there, If some error has occured, then I'm mapping my ModelInput to Model and then I'm performing an redirect to MyView with data sent via Object routes. For some reason in MyView param input is null, even if input in Test had correct values Any idea why after redirect my data (input param) is being lost? BTW: Guid? Id is sent correctly public IActionResult MyView(Guid? id, Model input = null) { // after redirect input is empty (...