问个linq问题呢 在SQL 中两张表连接查询在 on t1.guid=t2.guid and t1.guid="" 这样的形式 我想在linq中也在on 之后加上and条件 但是提示出错
代码是这样的
from control in smControl
join r in smRoleRight
on control.uGUID equals r.SMControlGUID && r.SMRoleGUID == new Guid("3ed87682-b3cd-4fb8-a4ba-9d5f0099d815")
from control in smControl
join r in smRoleRight
on control.uGUID equals r.SMControlGUID into t
where
t.SMRoleGUID == new Guid("3ed87682-b3cd-4fb8-a4ba-9d5f0099d815")
你这个报什么错啊,看上去没问题啊