I have an array of strings i'd like to use in the IN clause of a dynamic soql query.
if i wasn't building the string at runtime i could simply use (from the SF docs):
String[] ss = new String[]{'a', 'b'}; Account[] aa = [SELECT Id FROM Account WHERE AccountNumber IN :ss];
however, as i'm building at runtime, i use the following (where operators is my array):
soqlString += ' and Operator__c in' + operators;
This errors because the string values in operators are not in quotes. Is there an easy way to replicate the first example in dynamic soql?