Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有来自数据库表的实体,例如:
你看他们的关系是一对多Dot中的IDDot是一个标识列。MaSoDuThuong中的IDMS是一个身份列。通常,我可以将一条记录插入两个表中,但在其他页面中,当我知道 IDDot 的值时,我需要将一条记录插入MaSoDuThuong表中。请帮我做!
Dot dot = entityManager.getReference(Dot.class, dotId); MaSoDuThuong m = new MaSoDuThuong(); m.setDot(dot); em.persist(m);
就如此容易。