Xcode / swift -> where keyword in getDataTable

How can i use DynamicWhere expression with DA for Cocoa and Swift. The following lines give the error “Expected ‘,’ separator” because “where” is a keyword in swift:

let condition = NSPredicate(format: “id = %@”, id)
let clause = DADynamicWhereClause(predicate: condition)
let table = rda.getDataTable(“datatable”, select: nil, where: clause)

(I can’t use DASQL because i have a complex select where i want to set the where macro {WHERE} inside)