baopham / laravel-dynamodb

Eloquent syntax for DynamoDB
https://packagist.org/packages/baopham/dynamodb
MIT License
484 stars 128 forks source link

whereNotIn not working #244

Closed thongnv90 closed 2 years ago

thongnv90 commented 2 years ago

I use wherein works but whereNotIn doesn't work.

$model->whereIn('count', [0, 100])->get(); $model->whereNotIn('count', [0, 100])->get();

Please help me!

zoe-edwards commented 2 years ago

whereIn is a query that Dnyamo doesn’t really support, so those aren’t possible I’m afraid.