检索表的第二个选项

本文关键字:选项 第二个 检索 | 更新日期: 2023-09-27 18:13:09

我正在用c#和ADO开发一个应用程序。Net实体数据模型。我有一个表用户在SQL Server数据库3列(idUser, nameUser, statusUser)。检索第二个或第三个或第n个的代码是什么…

检索表的第二个选项

试试这个,我们用它来分页等等。

using (soforumEntities ctx = new soforumEntities())
{
      Article a = ctx.Articles.Where(c => (c.ArticleStatus != null && c.ArticleStatus.HasValue && c.ArticleStatus.Value != true)).OrderBy(x => x.ArticleStatus).Skip(1).Take(1).SingleOrDefault();
            Console.WriteLine(a.Id + a.Name);
}

看一下DENSE_RANK函数。