Example #1
0
 /**
  * Creates query with this table in from clause
  *
  * @param  string $alias
  * @return Query
  */
 public function createQuery($alias = 'a')
 {
     $from = $this->getTableName() . ' ' . $alias;
     $queryClass = $this->rm->getQueryClass();
     /** @var Query $query */
     $query = new $queryClass($this->rm);
     $query->from($from);
     return $query;
 }