从列表中获取前(N-1)条记录
我正在从数据库中选择前 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不是吗:
如果您确定它始终只是第二项和第三项,您可以通过索引值直接引用它们,例如:
列表[1]
和列表[2]
Won't it be:
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]
andlist[2]
为什么你不能直接索引到列表中。假设列表中只有 3 项:
这将为您提供第 2 项和第 3 项。除非我误解了问题...
Why can't you just index into the list. Assuming you have only 3 items in the list:
this will give you items 2 and 3. Unless if I misunderstood the question...
抱歉,我没有看到“所以无法使用 linq”部分
将它们添加到列表并使用 linq 跳过
类似的内容
Sorry I didnt see the "so cannot use linq " part
Add them to a List and use linq Skip
Something similar to