Package com.asakusafw.dmdl.thundergate.view.model

Examples of com.asakusafw.dmdl.thundergate.view.model.Join


                        new Select(n("t2.val2"), Aggregator.IDENT, n("val2")),
                }),
                new From(
                        n("t1"),
                        null,
                        new Join(
                                n("t2"),
                                null,
                                Arrays.asList(new On(n("t1.pk"), n("t2.pk"))))),
                Arrays.<Name>asList())));
    }
View Full Code Here


                        new Select(n("b.val2"), Aggregator.IDENT, n("val2")),
                }),
                new From(
                        n("t1"),
                        "a",
                        new Join(
                                n("t2"),
                                "b",
                                Arrays.asList(new On(n("a.pk"), n("b.pk"))))),
                Arrays.<Name>asList())));
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.thundergate.view.model.Join

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.