Examples of FetchGroupManager


Examples of org.xorm.FetchGroupManager

    Expression getExpression() {
        return query.getExpression();
    }

    private Object getCollectionProxy(BoundExpression bound) {
        FetchGroupManager fgm = XORM.getFetchGroupManager(mgr);
        ClassMapping mapping = XORM.getModelMapping(mgr).getClassMapping(query.getCandidateClass());
        Selector selector = bound.getSelector();
        selector.require(fgm.getDataFetchGroup(mapping));
        CollectionProxy cp = new CollectionProxy(mgr, mapping, selector);
        openResults.add(cp);
        return cp;
    }
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.