PHP | Working Example - how does DataList work?
<?php
$myDataList = MyDataObject::get();
//option 1
$myDataList = $myDataList->Filter("MyField", 1);
//option 2
$myDataList->Filter("MyField", 1);
return $myDataList
// QUESTION: does option 1 return the same as 2? Is that something that is different between 3.0 and 3.1?