bodar / lazyrecords

Think LINQ for Java
8 stars 4 forks source link

SqlRecords- joining across multiple tables #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
        Sequence<Record> peopleAndBooksAndSalePrices = records.get(people).
                flatMap(leftJoin(records.get(books), Grammar.using(isbn))).
                flatMap(leftJoin(records.get(salePrices), Grammar.using(isbn)));

Will forget the join with books.

Original issue reported on code.google.com by matthew....@gmail.com on 8 Jan 2013 at 4:04

GoogleCodeExporter commented 9 years ago

Original comment by matthew....@gmail.com on 8 Jan 2013 at 4:09