Created
September 3, 2012 12:13
-
-
Save andrew-t-moore/3608884 to your computer and use it in GitHub Desktop.
Fluent syntax query 2
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
var query2 = context.Person | |
.LeftJoin(context.Pet, | |
person => person, | |
pet => pet.Owner, | |
row => new { row.Outer.FirstName, row.Outer.LastName, PetName = row.Inner.Name }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment