This works for me: var result = await Backendless.Data.Of<Person>().FindAsync();
But if I try either of these: Person result = await Backendless.Data.Of<Person>().FindFirstAsync();
or Person result = Backendless.Data.Of<Person>().FindFirst();
…then I get this error at runtime:
BackendlessException: unable to find method in class. method name first
I am using the Backendless NuGet package version 6.0.0 running in Unity 2019.2.17. I am unable to complete the mission “CRUD Rookie” due to this error.