How can you select rows from a db table based on multiple "identifiers"?
Single key match
$id = 42;
DataObject::get('Foo')->where("ID = '$id'");
Multiple keys match
$id = array(42, 43, 44);
DataObject::get('Foo')->where( ??? );
In the second case it should return a list of rows that have an ID 42, 43 or 44.