Yoast\WP\Lib
ORM::distinct()
Adds a DISTINCT keyword before the list of columns in the SELECT query.
Метод класса: ORM{}
Хуков нет.
Возвращает
ORM
.
Использование
$ORM = new ORM(); $ORM->distinct();
Код ORM::distinct() ORM::distinct Yoast 24.0
public function distinct() { $this->distinct = true; return $this; }