有谁知道是否有工具将T-SQL代码转换为LINQ? 我努力寻找下面的SQL代码转换为LINQ的方式:使用组内部连接转换为LINQ
select * from actions as a
inner join
(
select max(actionid) as maxactionid, threaduid from actions as a
where a.actiontypeid not in (3,4)
group by threaduid
) as a2 on a2.maxactionid = a.actionid
where a.userid <> 2
任何帮助表示赞赏!
重复的http://stackoverflow.com/questions/296972/sql-to-linq-tool – Peter