I'm using LINQ with an ODATA web service
from tp in TyrePatterns
from t in tp.Tyres
where t.Diameter == 195
select tp
Seems simple enough, right? Tyres is a propery of TyrePatterns. So just to be sure you can see what I want to do, what I'm doing in the magical world of SQL would look something like:
SELECT DISTINCT TyrePatterns.Name
FROM TyrePatterns
INNER JOIN Tyres ON Tyres.TyreID = TyrePatterns.TyreID
WHERE Tyres.Diameter = 195
On our site, and in LINQPad, the LINQ code gives the run-time error:
System.NotSupportedException: Can only project the last entity type in the query being translated.
Insight into what this error actually means and a solution would be awesome.