将DISTINCT,COUNT SQL语句转换为LINQ

时间:2015-10-15 21:33:38

标签: sql-server linq

我有这个SQL语句(易于编写):

from itertools import ifilterfalse

def remove_duplicates(sorted_list, item):
    idx = sorted_list.index(item)
    list_real = sorted_list[:idx+1]
    if len(list_real) != len(sorted_list):
        for item in ifilterfalse (lambda x: x is item, sorted_list[idx:]):
            list_real.append(item)
    return list_real

我很难将其转换为LINQ。

任何人都可以帮我解决这个问题吗?

谢谢,德里克

0 个答案:

没有答案