I want to write a linq to search datatTable to return the Itemname who does not have atleast one tax applied
My datatable structure is
ItemName | cst 2% | vat 2% | sale tax | excise |
Item1 | TRUE | | TRUE | |
Item2 | | TRUE | | |
Item3 | | | | |
my output should be Item3
please suggest me the solution