返回带有id ==的元素的行号的LINQ语句?

时间:2009-07-15 16:58:39

标签: c# linq-to-sql

如何编写返回带有id == something的元素的ROWNUMBER的LINQ语句?

3 个答案:

答案 0 :(得分:12)

我知道没有直接的方法可以做到这一点。您必须将整个查询拉到客户端,然后您可以在行编号中进行投影。作为替代方法,您可以编写一个使用ROW_NUMBER的存储过程,然后将该proc从Linq命中为SQL。

在您的情况下,您将能够做到这一点的唯一方法是客户端。请记住,以下语句不会在服务器上执行此操作,但会下拉整个表并在客户端获取索引...

using (var dc = new DataClasses1DataContext())
{
    var result = dc.Users
        .AsEnumerable()     // select all users from the database and bring them back to the client
        .Select((user, index) => new   // project in the index
        {
            user.Username,
            index
        })
        .Where(user => user.Username == "sivey");    // filter for your specific record

    foreach (var item in result)
    {
        Console.WriteLine(string.Format("{0}:{1}", item.index, item.Username));
    }
}

答案 1 :(得分:3)

您应该可以使用Skip and Take扩展方法来完成此任务。

例如,如果您想要第10行:

from c in customers
           where c.Region == "somewhere"
           orderby c.CustomerName
           select new {c.CustomerID, c.CustomerName} 
           .Skip(9).Take(1);

答案 2 :(得分:1)

如何将行号投射到Linq查询结果中
How To Project a Line Number Into Linq Query Results