Created
August 29, 2016 06:26
-
-
Save abadongutierrez/949bf698002ceb1f4202f40f9f18a440 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Repo.all(from e in "employee", | |
join: d in "department", on: e.department_id == d.department_id, | |
where: d.department_id == 2, | |
select: [e.first_name, e.last_name, d.name]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment