标签: asp.net-mvc url binding model
有没有办法使用以下网址绑定到下面的操作
/new-event/documents/scoresheets?gameids=124823,124821
而不是
/new-event/documents/scoresheets?gameids=124823&gameids=124821
动作
public virtual ActionResult Scoresheets(int? eventId, int? gameId, List<int> gameIds)