I have a simple LINQ query on ADO.NET Entity Framework as follows
var result =
from itemA in TableA
join itemB in TableB on itemA.ID = itemB.ID
select ??????
I am trying to select everything from itemA and itemB without specifying all the TableA and TableB.
anything thoughts???
Is this what you need?
Alternately, you could declare a result class that helps you build the result object without specifying all the fields: