私は次のモデルを持っています:
class Model_User extends ORM {
protected $_primary_key = 'name';
protected $_has_many = array(
'repositories' => array(
'model' => 'repository',
'through' => 'repository_user',
),
);
}
class Model_Repository extends ORM {
protected $_primary_key = 'name';
protected $_has_many = array(
'users' => array(
'model' => 'user',
'through' => 'repository_user',
),
);
}
次のコードを使用して、リポジトリに接続されていないすべてのユーザーを取得します。
$repository = ORM::factory( 'repository', $this->request->param('svn_name') );
$users = ORM::factory('user')->where( 'name', 'NOT IN', $repository->users->find_all()->as_array() )
->find_all();
残念ながら、特定のリポジトリに接続しているユーザーがいない場合、次のエラー メッセージが表示されます。
Database_Exception [ 1064 ]: You have an error in your SQL syntax; check the manual
that corresponds to your MySQL server version for the right syntax to use near
')' at line 1 [ SELECT `user`.* FROM `users` AS `user` WHERE `name` NOT IN () ]
if を使用せず、Kohana-Methods のみを使用してこの問題を解決するにはどうすればよいですか?