Examples of ParentRelationshipEntity


Examples of com.force.sdk.jpa.query.entities.relationship.ParentRelationshipEntity

public class QueryRelationshipTest extends BaseJPAFTest {
   
    @Test
    public void testQueryRelationshipWithInheritance() {
        try {
            ParentRelationshipEntity parent = new ParentRelationshipEntity();
            ChildRelationshipEntity child = new ChildRelationshipEntity();
            child.setParent(parent);
            parent.setChildren(Collections.singletonList(child));
            EntityTransaction tx = em.getTransaction();
            tx.begin();
            em.persist(parent);
            tx.commit();
            List<ParentRelationshipEntity> parentResult =
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.