我正在使用ORM驗證模塊,很難弄清楚如何執行此操作。我已經試過這情況:如何刪除Kohana中的所有用戶角色3
$user = ORM::factory('user', $id); $user->roles->delete_all();
,並得到錯誤ErrorException [ Fatal Error ]: Call to undefined method Database_Query_Builder_Delete::join()
然而$user->roles->find_all();
給我我想要的東西。
謝謝。完美的作品:)儘管如此,我還是忍不住要刪除沒有ORM的角色DB :: delete('roles_users') - > where('user_id','=',$ id) - > execute(); – Bob0101 2010-08-01 20:44:28