I have:
a stored procedure which retrieves zip codes in a radius around another zip code
a table with contacts
I'm getting the contacts through an IQueryable interface which I've extended with various extension methods to filter results by age etc.
What I have trouble with is adding an IQueryable extension method which calls the stored procedure described above (zip codes in radius) and then joins those zip codes with my IQueryable list of contacts.
Any idea how to do this?