Example #1
0
 public function findByPk(Model $model, $mPrimaryKey)
 {
     $this->where($model->getAlias() . '.' . $model->getPrimaryKey() . ' = :pk')->setParameter('pk', $mPrimaryKey);
     return $this;
 }