我有以下sql查询找到第二个最高薪水.
Select * From Employee E1 Where (2) = (Select Count(Distinct(E2.Salary)) From Employee E2 Where E2.Salary > E1.Salary)
我想将其转换为Linq语句.
c# linq
c# ×1
linq ×1