Laravel 中的原始相关性查询.如何处理?
问题描述
我目前正在将一个大项目转移到 Laravel 框架 http://hobbyathletes.com/events/south-america/all-event-types/all/.我需要迁移我的内部搜索引擎,它使用以下查询(如果搜索一个词,这里有额外的预选选项南美洲):
I'm currently transfering a big project to Laravel framework http://hobbyathletes.com/events/south-america/all-event-types/all/. I need to migrate my internal searchengine, which uses the following query (if searched for one word, here additional pre-selected option South America ):
如何将此查询转移到 Eloquent Query builder?我已经尝试过 DB:raw($query)
这似乎不起作用......尝试使用的是非常需要的 ->paginate(25)
和 ->get()
,都不起作用.这里的任何人都可以让我朝着正确的方向前进吗?
How can I transfer this query to Eloquent Query builder? I tried already DB:raw($query)
which seems not to work... Tried is with the much needed ->paginate(25)
and with ->get()
, all not working. Anyone here can put me in the right direction?
推荐答案
Try with DB::select()
Try with DB::select()
这篇关于Laravel 中的原始相关性查询.如何处理?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!