Table1和Table2连接,把Table1的全列出来 var tempData = from a in table1 join b in table2 on a.Id equals b.aId into TempTable from temp in TempTable.DefaultIfEmpty() select new { Program = a.UnitOfBusiness, Tier = a.Tier, Market = a.Market, Id = a.Id, CRM = temo…