I have a entitydatasource bound to a gridview on my webpage.
In the code behind, I am able to filter and display what I want to the gridview using the WHERE statements o
The "IN clause" for EntityDataSource.Where requires curly braces, rather than parentheses:
whereString = "it.EmployeeID IN {1,4,7}"