What\'s better practice when defining several methods that return the same shape of data with different filters? Explicit method names or overloaded methods?
For exa
One thing you may consider is that you can't expose overloaded methods as operation contracts in a WCF Web Service. So if you think you may ever need to do this, it would be an argument for using different method names.
Another argument for different method names is that they may be more easily discoverable using intellisense.
But there are pros and cons for either choice - all design is trade-off.