As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hi Mark,
About your first question, You must have created a Entity class in your code which you would have linked with your collection. If you try to get entities in the collection, You will be only able to access the values of properties which are there in your class. If you create a object in your code and save it through the API to the Backend then only the fields you have initialised will be synced with the Backend.
About your second question, Yes it is possible to create nested entities in Kinvey. Please review following example.
[JsonObject("Date")] public class Date { [JsonProperty] public string Day { get; set; } [JsonProperty] public string Month { get; set; } [JsonProperty] public string Year { get; set; } }
Let us know if you have any other questions about this.
Regards,
Abhijeet
Mark,
The use case you mentioned should work without an error. I tried this use case and I couldn't reproduce it. Could you please answer following questions for me:
the project is too big to attach here - so please use this dropbox link:
https://www.dropbox.com/s/sp338u9i0colqfc/Xamarin-Starter-master%20-%20Copy.zip?dl=0
It hopefully contains everything you need
mark
I started with the Xamarin-Start Project. When I now add new properties to the "Book" entity, I can't use it anymore. Cant Save etc.
So, I added the rows in my kinsey account, but still I cannot add a book.
The properties are DateTime and int.
Question is now how do I create my own entities with kinvey and synchronize them?
Further question: Is it possible to have a collection in my entity?
Thanks