我有一个有以下描述的课程:
public class Customer { public ISetContacts { get; protected set;} }
我想将Contacts属性映射到下表:
CREATE TABLE user_contacts ( user1 uuid NOT NULL, user2 uuid NOT NULL )
我希望它双向映射,即当Customer1添加到Customer2的Contacts时,Customer1的Contacts集合应包含Customer2(可能仅在实体重新加载后).我怎么能这样做?
更新当然我可以映射从左到右和从右到左的集合,然后在运行时进行组合,但它会......嗯......不讨厌......还有其他解决方案吗?无论如何,非常感谢你,FryHard!