我正在尝试通过关系模型列对主模型的整个数据集进行排序。我正在使用 Laravel ORM 5.2.43 和 Jensenggers MongoDb 3.1
以下是我的模特
UserEventActivity.php - Mongo模型
use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
class UserEventActivity extends Eloquent
{
protected $collection = 'user_event_activity';
protected $connection = 'mongodb';
public function handset() {
return $this->hasOne('HandsetDetails', '_id', 'handset_id');
}
public function storeDetail() {
return $this->hasOne('StoreDetails', 'st_id', 'store_id');
}
}
HandsetDetails.php - Mongo模型
use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
class HandsetDetails extends Eloquent
{
var $collection = 'user_handset_details';
var $connection = 'mongodb';
}
StoreDetails.php - MySql模型
use Jenssegers\Mongodb\Eloquent\HybridRelations;
use Illuminate\Database\Eloquent\Model as Eloquent;
class StoreDetails extends Eloquent
{
use HybridRelations;
protected $connection = 'mysql';
protected $table = 'icn_store';
}
Php脚本
$activity = UserEventActivity::join('handset ', 'handset._id', '=', 'handset_id')
->join('storeDetail', 'store_id', '=', 'storeDetail.st_id')
->orderBy('handset.handset_make', 'desc')
->select('storeDetail.*', 'handset.*')
->get()
->toArray();
来自UserEventActivity
的此数据不会根据手机关系中的handset_make
字段进行存储。
请帮助我达到预期的效果
答案 0 :(得分:1)
据我所知,MongoDB不支持这样的连接。
解决方法可能是使用预先加载。
因此,您的UserEventActivity
模型可能如下所示:
use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
class UserEventActivity extends Eloquent
{
protected $collection = 'user_event_activity';
protected $connection = 'mongodb';
public function handset() {
return $this->hasOne('HandsetDetails', '_id', 'handset_id');
}
public function storeDetail() {
return $this->hasOne('StoreDetails', 'st_id', 'store_id');
}
public function getHandsetMakeAttribute()
{
return $this->handset->handset_make;
}
}
请注意getHandsetMakeAttribute()
访问者。
然后你可以用这个来打电话:
$activity = UserEventActivity::with('storeDetail')
->with('handset')
->get()
->sortByDesc('handset_make')
->toArray();
完全没有经过测试,但值得一试。