用linq怎么才能写出来 表1 中的货号与表2 、表3 货号关联 进而获得表2、表3中的流水号 和Doc中是否有值
(表2、表3、只是表名不一样,字段一样)
from table1 in 客商下载发票信息查询
join table2 in (from t1 from 上游发票查询 group t1 by t1.货号 into g select new { s1 = g.Count() })
on table1.货号 equals table2.货号
join table3 in (from t2 from 上游随货查询 group t2 by t2.货号 into g1 select new { s2 = g1.Count() })
on table1.货号 equals table3.货号
select new {
table1.上游发票,
table1.货号,
table2.s1>0?"有":"无",
table3.s2>0?"有":"无"
} 试试看。
您好 能加您QQ说一下么 不好意思 打扰,
@撞到南墙拆了继续走: 854861085