Eloquent: use a modificator in WhereIn

五迷三道 提交于 2021-01-29 11:10:48

问题


in my code i've create a modificator and generate the column chiave_composita. If i run this code i've obtain the data

TransazioniOrigine::all()->pluck('chiave_composita')->toArray()

but if i use this code

    $origine = TransazioniOrigine::all()->pluck('chiave_composita')->toArray();
    $destinazione = Transazioni::all()->pluck('transazioneKey')->toArray();
    $diff = array_diff($origine, $destinazione);
    dd(TransazioniOrigine::whereIn('chiave_composita', $diff)->get());

i have this errror:

Il nome di colonna 'chiave_composita' non è valido. (SQL: select * from [vwTransazioni] where [chiave_composita] in (1515152021011110))

how can i solve this issues?

Thanks


回答1:


You can't use whereIn with accessors. The database doesn't know about them.

What you can do is filter the resulting collection.

TransazioniOrigine::get()->filter(fn($t) => in_array($t->chiave_composita, $diff));



回答2:


THanks IGP!!! With your suggestion i've solved the problem.



来源:https://stackoverflow.com/questions/65675483/eloquent-use-a-modificator-in-wherein

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!