For the FilterExpression on the DataTable.Select method can I have more than one filter. Like this:
Code:
                    String expression = "[ProductID] = '" + PMTDProductID + "' && [CustNo] = '" + APMFCustNo + "'";

                    DataRow[] results = dtCust.Select(expression);

Currently this is throwing this error "Syntax error: Missing operand before '&' operator.". What am I doing incorrectly?

Thanks,