Hi,
given an action with a ViewModel parameter
public IActionResult Index(IndexViewModel model)
and a viewModel like this
public class IndexViewModel
{
public int MyProperty {get;set;}
}
i would like that
var url = Url.Action(r => r.Index(model));
generate
/Home/Index?
619C
MyProperty=5
How can i do that with TypedRouting ?
Thanks