You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have added the column in the searchableColumns, But now I want to search with a combination of first name and last name, like "Manish Khalde"
If I enter "Manish" and "Khalde" individually, then it works, but I want the full name search.
That's because the query used looks like firstName ILIKE '%foo%' OR lastName ILIKE '%foo%'. If you need a solution with the current version, then your only choice is to create a virtual column which combines the two. Otherwise a feature which let's you customise the search statement might be useful in general - so you could switch it up to something like CONCAT(firstName, ' ', lastName) ILIKE '%foo%'.
Below is my entity
I want to search in all approval on the field of firstName and lastName
Below is config code
The text was updated successfully, but these errors were encountered: