You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
issue in model.RouteValue,
when I use array or list in filter value (like: new RouteValueDictionary { { "selectedCountries", [3,5,7] } })
outcome: selectedCountries=3,5,7
but desired: selectedCountries=3&selectedCountries=5&selectedCountries=7
I think issue in here (page:PagingListOfT.cs, line: 75 -return dict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value?.ToString());),
not considered kvp.Value as array/list.
The text was updated successfully, but these errors were encountered:
issue in model.RouteValue,
when I use array or list in filter value (like: new RouteValueDictionary { { "selectedCountries", [3,5,7] } })
outcome: selectedCountries=3,5,7
but desired: selectedCountries=3&selectedCountries=5&selectedCountries=7
I think issue in here (page:PagingListOfT.cs, line: 75 -return dict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value?.ToString());),
not considered kvp.Value as array/list.
The text was updated successfully, but these errors were encountered: