基于外键关联的一对多单向关联
生活随笔
收集整理的這篇文章主要介紹了
基于外键关联的一对多单向关联
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
基于外鍵關聯的單向一對多關聯是一種很少見的情況,并不推薦使用。?
<class name="Person"><id name="id" column="personId"><generator class="native"/></id><set name="addresses"><key column="personId" not-null="true"/><one-to-many class="Address"/></set> </class><class name="Address"><id name="id" column="addressId"><generator class="native"/></id> </class> create table Person ( personId bigint not null primary key ) create table Address ( addressId bigint not null primary key, personId bigint not null )http://lavasoft.blog.51cto.com/62575/39317
轉載于:https://www.cnblogs.com/haiwei_sun/articles/2677312.html
總結
以上是生活随笔為你收集整理的基于外键关联的一对多单向关联的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【dp】CF17C. Balance
- 下一篇: ASP.NET应用程序性能测试