ASP.NET MVC ambiguous action methods
I have two action methods that are conflicting. Basically, I want to be able to get to the same view using two different routes, either by an item's ID or by the item's name and its parent's (items can have the same name across different parents). A search term can be used to filter the list. For example... Items/{action}/ParentName/ItemName Items/{action}/1234-4321-1234-4321 Here are my action methods (there are also Remove action methods)... // Method #1 public ActionResult Assign(string parentName, string itemName) { // Logic to retrieve item's ID here... string itemId = ...; return