I want to query firebase database with name contains the search text, In Android. My database structure is shown in image.
I want to query first name and last name and get limited records in result.
I want to query firebase database with name contains the search text, In Android. My database structure is shown in image.
I want to query first name and last name and get limited records in result.
One way that you can get around this problem is to concatenate first name and last name into a new couple. Something like this: First_Last_Name: "Rahul_Rajesh". Just be noticed that this way causes redundancy and you should avoid it unless you REALLY need it.