LINQ and a Multi-column Join Problem
What causes the following LINQ query to generate a "The type of one of the expressions in the join clause is incorrect. Type inference failed in the call to ‘Join’" error? from doc in BvdDoc join job in BvdJob on doc.BvdDocID equals job.BvdDocID join iter in BvdIteration on job.BvdJobID equals …