xPDOQuery.setClassAlias
Последнее обновление Jan 28th, 2020 | История страницы | Улучшить эту страницу | Сообщить о проблеме
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn morexPDOQuery::setClassAlias¶
Устанавливает псевдоним SQL для таблицы, представленной основным классом.
Синтаксис¶
API Docs: xPDOQuery::setClassAlias()
xPDOQuery setClassAlias ([string $alias = ''])
Пример¶
Возьмите все объекты "OtherBox", но установите псевдоним "Box" для удобства чтения..
$query = $xpdo->newQuery('OtherBox');
$query->setClassAlias('Box');
$query->where(array(
'Box.name' => 'RoundBox',
));
$otherBoxes = $xpdo->getCollection('OtherBox',$query);
Смотрите также¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more