我正在尝试将以下mongoDB查询与Laravel Jessanger一起使用,但无法将其作为raw
查询运行。
db.getCollection('users').aggregate([
{
"$group": {
"_id": { "cnic": "$cnic", "time_in": "$time_in" },
"uniqueIds": { "$addToSet": "$_id" },
"count": { "$sum": 1 }
}
},
{ "$match": { "count": { "$gt": 1 } } }
]).forEach(function(doc) {
doc.uniqueIds.shift();
db.getCollection('users').remove({_id : {$in: doc.uniqueIds }});
})
我想运行这个简单的查询,因为它是从数据库中删除重复项。
我尝试使用如下:
Users::raw()->find('mongo raw statement')
和
$cursor = DB::collection('users')->raw(function($collection)
{
return $collection->find('mongo raw statement');
});
由于
答案 0 :(得分:2)
在Laravel Jenssegers图书馆中, Raw Expressions部分描述了想要创建原始表达式。 原始表达式接受条件的数组对象。在您的示例中,find方法不正确。
答案 1 :(得分:0)
这是我在Mongodb(Laravel Jensseger)工作的第一天,我很幸运能弄清楚。因此,我想查询我的消息模型:
// This is the SQL version
$unreadMessageCount = Message::selectRaw('from_id as sender_id, count(from_id) as messages_count')
->where('to_id', auth()->id())
->where('read', false)
->groupBy('from')
->get();
// This is the Mongo version. The solution was figuring out the 'aggregate' concept in Mongo
$unreadMessageCount = Message::raw(function($collection)
{
return $collection->aggregate([
[
'$match' => [
'to_id' => auth()->id()
]
],
[
'$group' => [
'_id' => '$from_id',
'messages_count' => [
'$sum' => 1
]
]
]
]);
});
希望这会有所帮助。