Package org.hibernate.loader.plan.exec.internal

Examples of org.hibernate.loader.plan.exec.internal.EntityReferenceAliasesImpl


        new CollectionReturnReader( rootReturn ),
        new CollectionReferenceInitializerImpl( rootReturn, collectionReferenceAliases )
    );
    if ( rootReturn.getCollectionPersister().getElementType().isEntityType() ) {
      final EntityReference elementEntityReference = rootReturn.getElementGraph().resolveEntityReference();
      final EntityReferenceAliases elementEntityReferenceAliases = new EntityReferenceAliasesImpl(
          collectionReferenceAliases.getElementTableAlias(),
          collectionReferenceAliases.getEntityElementColumnAliases()
      );
      aliasResolutionContext.registerQuerySpaceAliases(
          elementEntityReference.getQuerySpaceUid(),
View Full Code Here

TOP

Related Classes of org.hibernate.loader.plan.exec.internal.EntityReferenceAliasesImpl

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.