从列表中获取前(N-1)条记录

发布于 2024-10-06 22:25:59 字数 95 浏览 5 评论 0原文

我正在从数据库中选择前 3 条记录。我想显示除第一条记录之外的最后 2 条记录。我们如何使用 C# 来做到这一点。我正在使用 asp.net 2.0,所以无法使用 linq 。

I am selecting top 3 records from the Database. I want to display last 2 records except first record .How can we do this with C#. i am using asp.net 2.0 ,so cannot use linq .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

毁我热情 2024-10-13 22:25:59

不是吗:

List<string> list = new List<string>();
    for (int i = 1; i < 3; i++)
    {
       string s = list[i];
    } 

如果您确定它始终只是第二项和第三项,您可以通过索引值直接引用它们,例如:
列表[1]列表[2]

Won't it be:

List<string> list = new List<string>();
    for (int i = 1; i < 3; i++)
    {
       string s = list[i];
    } 

And if you are sure that it would always be the 2nd and 3rd items only, you can directly refer to them through the index value like:
list[1] and list[2]

尐偏执 2024-10-13 22:25:59

为什么你不能直接索引到列表中。假设列表中只有 3 项:

var item2 = list[1];
var item3 = list[2];

这将为您提供第 2 项和第 3 项。除非我误解了问题...

Why can't you just index into the list. Assuming you have only 3 items in the list:

var item2 = list[1];
var item3 = list[2];

this will give you items 2 and 3. Unless if I misunderstood the question...

倾`听者〃 2024-10-13 22:25:59
for (int i = 1; i < 3; i++)
{
    DisplayData(dataStructure[i]);
}
for (int i = 1; i < 3; i++)
{
    DisplayData(dataStructure[i]);
}
甜中书 2024-10-13 22:25:59

抱歉,我没有看到“所以无法使用 linq”部分

将它们添加到列表并使用 linq 跳过

类似的内容

var allButFirst1 = waOrders.Skip(1);

Sorry I didnt see the "so cannot use linq " part

Add them to a List and use linq Skip

Something similar to

var allButFirst1 = waOrders.Skip(1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文