我这个 on 后面是多个条件非一个 而且是或者的关系
@QA龙: on (t1.tbid == t2.parentId or t1.tbid =t2.childrenid)
@Launcher: from a1 in A join b1 in B on (t1.tbid == t2.parentId or t1.tbid =t2.childrenid)
?? 这样写吗? 提示这是错误的 不能这么写
@QA龙: 错了啊,那这样写吧:
from a1 in A
join b1 in B on a1.tbid equals b1.parentId
join c1 in B on a1.tbid equals c1.parentId
select a1
@Launcher: 谢谢谢谢 终于成功啦。和sql语句结果一致了