Example #1
0
 public function setDataSource(IDataSource &$dataSource)
 {
     $this->dataSource = $dataSource;
     if (is_null($this->primary_key)) {
         $this->primary_key = $this->dataSource->getPrimaryKey();
     } else {
         $this->dataSource->setPrimaryKey($this->primary_key);
     }
     return $this;
 }