查询redbeanphp中的多对多关系

时间:2015-06-14 12:25:50

标签: php mysql redbean

我有两张表,用户"和"庄园"我用这段代码在这些表之间建立了很多关系:

$user->link("estatetrans", (array("trtype" => $trtype, "indate" => time())))->estate = $estate;
  

" estatetrans"是包含这两个表之间关系的表的名称:

现在我想查询" estatetrans"表格通过过滤 trtype 列。

我使用此代码执行此操作:

$trans = R::findAll("estatetrans", "users_id=:uid and trtype=:trt" , array("uid"=>$userId , "trt"=>$trtype)) ; 
    $estates = array() ; 
    foreach ($trans as $tr)
    {
        array_push($estates, $tr->estate) ; 
    }

但我知道这不是一个完美而优秀的校长。 我怎样才能通过redbeanphp方法完成这项工作?

1 个答案:

答案 0 :(得分:2)

RedBeanPHP的方式是使用sharedList而不是findAll,例如,像这样:

list($e, $t) = R::dispenseAll('estate,transaction');
$e
  ->link('estate_transaction',['type'=>'auction'])
  ->transaction = $t;
R::store($e);
$e = R::findOne('estate');
$x = $e
     ->withCondition(' estate_transaction.type = ? ',['auction'])
     ->sharedTransaction;

$ x现在包含由estate_transaction.type列过滤的事务。

请注意,如果您想要更加漂亮的解决方案,也可以重命名链接表。

欢呼声 的Gabor