I\'m using the default template generated by Asp.net Web Api. I\'m working with the Get() Part:
// GET api/values public IEnumerable
The query string key name should match the parameter name of the action:
/api/values?queryString=f
public IEnumerable Get(string queryString) { return new string[] { "value3", "value4" }; }