Hello this is my linq query,
var RoutineRemarks = (from i in _context.TableA.Include(a => a.pm_routine_report_type)
from j in _context.TableB.Include(a => a.PM_Evt_Cat).Include(b => b.department).Include(c => c.employees).Include(d => d.provncs)
orderby i.seen_by_executive_on descending
orderby j.English_seen_by_executive_on descending
// Here i face the problem, i want to select i+j
select i+j).ToList();
At the end it allows me to only select either i or j, but i want to select both, how can i do that?