My BindingSource is bound to a collection of objects (not using ADO.NET) and I would like to filter it and exclude some values but not sure if I'm using this exactly since the result set I am expecting is not coming back. I was thinking something like this, but its not working:
MyBindingSource.Filter = "State = 'NY' AND State = 'MA' AND State = 'CO'";
Any assistance will be greatly appreciated!