1- I have an ASPXGridView on my page.
2- I use linq to sql query as my data source.
3- I merge two different table data. One table has more columns than the other. I create an anonymous type and create the missing columns for the table with less number of columns and initialize those added columns to empty string.
4- When page loads, grid is loaded with data as it should.
5- There is a header filter for all columns.
6- When I expand header filter. I see all possible filters including empty string.
7- When I select empty string and hit OK, then the grid is not filtered and it stays the same.
8- When I expand the header filter again, I see that my check on empty string is gone.
What should I do in order to be able to filter by empty string?