I am using ActiveAndroid library. This is an ORM. so there were problems when saving. There is a class whose fields are other classes. For example, the User class with the Human and Info fields. I want to save the User user; user.save (); and expect that Orm itself will save Human and Info. I even googled and found that for this you need to do so

@Column(name = "transactionList", onDelete = Column.ForeignKeyAction.CASCADE, onUpdate = Column.ForeignKeyAction.CASCADE) 

but in fact it does not work. How to save linked tables?

  • And what about the docks to this ORM write about this? - Yuriy SPb 1:09 pm

0