I have a binding source and it has a column called Description and I want to exclude all rows that have their description set to 'x'.
I have tried:
bindingSource.Filter = "Description != ' + x;
That doesn't work. Does anyone know how to do a is not comparison for the binding source's filter? I couldn't find any help on MSDN.