whereNotIn不在Laravel 5中工作

时间:2015-06-03 09:20:52

标签: php laravel-5

我正在使用Laravel 5查询构建器,但在使用whereNotIn函数时似乎找不到任何行。

这是我正在使用的代码:

BookingDates::where('id', $id)->whereNotIn('token', [$token])->count()

应该返回1.

但是,当我删除whereNotIn子句时,它可以工作:

BookingDates::where('id', $id)->count()

0 个答案:

没有答案