Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 Sugar ORM 是否为数据库中的列名采用序列化名称。例如..
在我的pojo中,
public class myPojo implements Serializable{ @SerializedName("id") String program_id; ..... }
Sugar ORM 将什么作为 columnName、“id”或“program_id”?
请记住,这@SerializedName只是 GSON 和您的对象之间的映射。对于 Sugar 管理的底层 SQLite 数据库,您仍然会有对应关系:
@SerializedName
String program_id ----> "PROGRAM_ID"
资料来源: https ://github.com/satyan/sugar/issues/86