I have two linq results as below
-- var itemlist=(from i in context.Items.....................)
-- var otherlist=(from j in context.Extras...................)
both lists contain same 5 columns with ItemID as key.But otherlist has a Quantity column which id blank in Items.I need to club these two lists to one with all details available.Number of rows would be more than 50k in itemlist and lesser in otherlist.Whats the best soln to club these?