In the examples I have seen so far for MVC4 WebApi the following URL\[code\]/api/products\[/code\]maps to the following action in the Products controller\[code\]GetAllProducts\[/code\]Is the "All" required? It would be more logical to just use\[code\]GetProducts\[/code\]The reason this is confusing in my app is that /api/products accepts a "filter" object that returns a subset of products not "all" the products.