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 Michael,
Could you please try following way for complex objects. Let us know if it doesn't work.
[JsonObject("Date")] public class Date { [JsonProperty] public string Day { get; set; } [JsonProperty] public string Month { get; set; } [JsonProperty] public string Year { get; set; } }
Regards,
Abhijeet
Michael Vowles
Hi,
We have a complex field in one of our databases, we don't have a need to model this in our xamarin forms project. However the issue is without modelling it in the entity class it fails to decode any of the entities in this datastore. e.g a datastore fetch returns 0.
Is there any way to convert/typecast the complex field to a plain string so that the entire field does not need to be modelled?