douhuang7263 2016-11-12 13:51 采纳率: 100%
浏览 28
已采纳

Laravel Eloquent获得了特定的关系

I'm trying to get the books where the authors are from a specific country, for now my query looks like this :

$books->with('author')->where('country', '=',  'FR'); 

but the where is applied to books and not to authors

any help ?

  • 写回答

1条回答 默认 最新

  • dongyata3336 2016-11-12 13:57
    关注

    You need to use whereHas() for that. The following code should do the trick:

    $country = 'FR';
    $books = Book::with('author')->whereHas('author', function($query) use ($country) {
      $query->where('country', '=',  $country);
    })->get();
    

    This will give you all books that have a related author, that has country column set to FR.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于用pyqt6的项目开发该怎么把前段后端和业务层分离
  • ¥30 线性代数的问题,我真的忘了线代的知识了
  • ¥15 有谁能够把华为matebook e 高通骁龙850刷成安卓系统,或者安装安卓系统
  • ¥188 需要修改一个工具,懂得汇编的人来。
  • ¥15 livecharts wpf piechart 属性
  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题