i am tring to get a list of projects i have in the database , the problem is when i try this code
Backendless.Persistence.of( Project.class).find(new AsyncCallback<BackendlessCollection< Project>>(){
@Override
public void handleResponse( BackendlessCollection<Project> foundProjects )
{
Log.v(“projetsssssssss”,String.valueOf(foundProjects));
}
@Override
public void handleFault( BackendlessFault fault )
{
// an error has occurred, the error code can be retrieved with fault.getCode()
}
});
i keep detting a collection "com.backendless.BackendlessCollection@41e23400"i want to get a list of all the projects with teir attributes , how can i do that please?