2つのアクティビティ間でORMLiteを使用してオブジェクトを送信するにはどうすればよいForeignCollection
ですか?それForeignCollection
はシリアル化できませんか?シリアル化できないオブジェクトが原因でこれを取得してIOException
います。
例:マイコールクラス
@ForeignCollectionField(eager = false)
private transient ForeignCollection<CallObjective> _callObjectives;
My CallObjectiveクラス:
@DatabaseField(columnName = "CallId", foreign = true, foreignAutoRefresh = true)
private Call _call;