Hello, you can use the Filter property of a BindingSource to do SQL like filtering. for example
bindingSource.Filter= "Activated = 1"
but is there something like a documentation on the exact syntax of this?
for example i would like to check if a field is not DBNull, so i tried "Field != NULL" but it gives a syntax error.
thanks!