我有一个数据库结构:
Contact
----
id serial
...
Note
----
id serial
note text
Contact_Note_Link
----
id serial
contact_id integer <- Foreign Key on Contact.id
note_id integer <- Foreign Key on Note.id
所以,我有一个Contact表单,其中有一个子表单Contact_Note_Link,以及一个子表单,用于Note。我可以很容易地将注释链接到联系人,但是如何创建新注释,让它生成新ID,将所述ID链接到新的Contact_Note_Link,该联系ID将通过Form-&gt; Subform关系预填充?