Package org.hibernate.ogm.backendtck.queries

Examples of org.hibernate.ogm.backendtck.queries.AnotherEmbeddable


    OgmSession session = openSession();
    Transaction tx = session.beginTransaction();

    // given
    EntityWithObjectIdAndEmbeddable entity = new EntityWithObjectIdAndEmbeddable();
    AnotherEmbeddable anotherEmbeddable = new AnotherEmbeddable( "Another nice string ... nested" );
    AnEmbeddable anEmbeddable = new AnEmbeddable( "a very nice string", anotherEmbeddable );
    entity.setAnEmbeddable( anEmbeddable );

    // when
    session.persist( entity );
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.backendtck.queries.AnotherEmbeddable

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.