我正在使用 Laravel 5.1。下面是我的数据库查询
\App\Models\Project\Bids\ProjectBid_Model
::with(['Project' => function($query){
$query->where('WhoCreatedTheProject', 16);
}])
->where('ProjectBidID', 1)
->where('FreelancerAwardedProjectStatusID', \App\ProjectStatus::InProgress)
->first()
问题是什么 ?
在下面的部分中,如果没有记录,那么Project Object
将是null
。这似乎是 select 语句中的子查询。value does not match in the database ? I meant I am looking for
如果“WhoCreatedTheProject Inner Join ”,有没有办法返回整体无记录。
::with(['Project' => function($query){
$query->where('WhoCreatedTheProject', 16);
}])