I have a table in MySql:
CREATE TABLE db.catalog (
id varchar(36) NOT NULL,
pictures json DEFAULT NULL
)
and declaration form code
public class catalog {
public string id { get; set; }
public List<string> pictures { get; set; }
}
and I have data: pictures = ["JavaScript", "ES2015", "JSON"]
When you run the query through OrmLite deserializing is not correct...
It is evident that the deserialization as in the cases of key-value data.
I'm doing something wrong? or is it meant to be?
Thanks!