Using BindingSource
on LINQ to SQL, and having implemented a BindingList
in my project, I have to use a Textbox
to filter rows in a
http://msdn.microsoft.com/en-us/library/system.windows.forms.bindingsource.filter.aspx
as shown there the bindingsource.Filter
is a string value. And default is null, so just do this:
productBindingSource.Filter = null;
its possible though that you have to do something to update your UI but usually the bindingSource takes care of that itself.