"code":8044,"message":"Cannot save entity with primitive collection property _private_dates"

I got this error when saving a object in backendless. I use the generated code to save the object but i got this error. “code”:8044,“message”:“Cannot save entity with primitive collection property _private_dates”. When commented out the the private dates then the error is showing “code”:8044,“message”:“Cannot save entity with primitive collection property _private_relations”. how can i solve this.

Hi Sumanta,
please, remove such fields from your classes:

this._private_relations = [];
this._private_geoRelations = [];
this._private_dates = [
"updated",
"created"];

This should help you. Also this will be fixed soon so you will not force with this issue again.
Let me know if it helps you please.

Regards,
Stanislav

Thanks for your help.