このようなクエリを作成する必要があります
JOIN users
ON dialogs.`user_id` <> '.$this->user->id.'
AND dialogs.user_id=users.id
OR dialogs.`to` <> '.$this->user->id.'
AND dialogs.`to`=users.id
しかし、on()メソッドを使用するたびに、ORMは「AND」ステートメントを追加します。ANDの代わりにORを追加することは可能ですか?