In T-SQL, when I need to do the bitwise-AND filtering, I can do the following: select * from TABLE where FIELD & 1 > 0 However, in ADO.NET DataTable object, the Select method cannot take FIELD & 1 > 0. It will generate error. So, how can I do the bitwise-AND filtering in DataTable Object? Thanks