I created a table called Services and populated it with 8 rows of data (each row would be considered a service in the services table). In the app I created a Service class and then proceed to make a find call, as follows:
[ backendless.persistenceService find:[Service class] dataQuery:dataQuery …
This didn’t work and I eventually figured out that the class needed to be named Services (see plural) to make things work.
Is there a way for me to tell the find call I’m looking for the Services table and to use my local class (whatever I choose to name it) as the class type to be instantiated with the resulting data?