Regarding java(android) data table mapping to client class, is there way I can add a variable to a data mapping class which doesn’t map to data table field?
I just have table field of type String which contains json, and want to add a variable of type JSONArray within the class.
I am not sure how mapping works, and I can’t think of other way then having unmapped variable declared in other class. Any suggestions? Can I use inner class to declare?
Is it okay to have public method that returns value within a data mapped class? (that is not getter/setter for data field mapping)
As I searched, transient is only for variables.