Hello everybody! I have a question. How to declare pointer in C# in right way? I want an object that will be included into find. After fetching i want to get something like that:
player.User.username;//where player is HubPlayer, User is MoralisUser.
The second part of the question, is how to include part of the User document(Username) into query for table HubPlayer?
I try different ways. But dont find and solutions(read already parse.io, mongodb etc).
Now i have code:
MoralisQuery query = MoralisInterface.GetClient().Query();
query.Include(âUserâ);
But it returns only objectId;