-
Notifications
You must be signed in to change notification settings - Fork 11
Description
We should have a replacement ready for the old QueryEngine
, so a user can pass a query builder or similar to the datatable.
What i found was really 'annoying' was the small little details i had to put into the old QueryEngine
to make the search work across different databases.
So i would like to include search functionality behaviour as method on this provider so the user can implement it as needed.
I also see a problem if the user pre selected any data and then passes it to the EloquentQueryProvider
.
E.g. if a user passes all users sorted by name to the datatable but skips the first 10 we have a problem, because the initial dataset can change.
So when a user orders by id (and the user skips the first 10 and passes it to the provider) then there is a changed dataset where different 10 users are missing.
Also should we override the skip
and take
parameter of the user?