Package org.caffinitas.mapper.test.query.st

Examples of org.caffinitas.mapper.test.query.st.StBaseEntity


            Assert.assertNotNull(result);
            Assert.assertTrue(result.isEmpty());

            // insert data

            StBaseEntity inst = new StBaseEntity();
            inst.setId(11);
            inst.setVal("one");
            session.insert(inst);
            inst.setId(12);
            inst.setVal("two");
            session.insert(inst);
            inst.setId(13);
            inst.setVal("three");
            session.insert(inst);

            // again

            queryBinder = session.createQueryBinder(StBaseEntity.class, null, "id in :id", null);
View Full Code Here

TOP

Related Classes of org.caffinitas.mapper.test.query.st.StBaseEntity

Copyright © 2018 www.massapicom. 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.