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;