本文介绍了Lambda中的SQL到LINQ查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 有人可以帮我将以下查询转换为LINQ。 我在这里和那里尝试了几个选项,但没有真正有效。 查询: - 从表tb1中选择*,(SELECT column1,column2,max(column3)as column3 FROM Table1 Group by Column1,Column2)tmp where tb1.column3 = tmp.column3 order by tb1.column3 desc 说明: - 1. Groupby Column1,Column2 2.第3列的最大值 - Aggregade 3. OrderbyDecending - column3 4.从表中选择所有列。 谢谢, 编码器Can some one help me to convert following query into LINQ. I Tried several options here and there but nothing really worked.Query:- Select * from Table tb1,(SELECT column1 ,column2,max(column3) as column3 FROM Table1 Group by Column1,Column2) tmp where tb1.column3 = tmp.column3 Order by tb1.column3 descExplanation:- 1. Groupby Column1,Column22. Max of column3 -- Aggregade3. OrderbyDecending -- column34. Selecting all the columns from table. Thanks,Coder推荐答案 这篇关于Lambda中的SQL到LINQ查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-26 20:40