I want to select rows from a DataTable. Selection criteria include andhing and the column name has a b / w space, as you can see below:
int distributionLineIdex = import.VendorInvoiceLineDetailTable.Select
("Number='AMEX0311_00011' and Line number='001'").Count();
I get the following exception:
Syntax error: Missing operand after 'number' operator.
What am I missing here?
source
share