I can't seem to figure out the LINQ Join extension method... I have the following LINQ inline query:
var cc = from z in zipcodes
join c in contactsRepo.UDF_SelectSome() on z.Zipcode equals c.Zip
What is the equivalent of this in LINQ-extension-method syntax?