如何避免c#中的重复记录

时间:2013-02-06 12:01:36

标签: c# linq

我通过两个步骤从服务器获取数据。

首先从我的表中随机取出25条记录并向用户显示记录,现在我已经添加了一个按钮。当用户点击该按钮时,我必须显示来自数据库的下25条记录,但我需要确保这些记录不包含任何已经显示的记录。如何在c#

中执行此操作

以下是我获得前25条记录的代码

var records = context.couponservice.Query().Take(25).ToList();

提前感谢。

4 个答案:

答案 0 :(得分:1)

您可以在.Skip(pageSize * numberOfPages)之前使用.Take(pageSize)来跳过许多您不想显示的记录/页面。

答案 1 :(得分:1)

怎么样

int position = 25; // Increase this for each page
var nextRecords = context.couponservice.Query().Skip(position).Take(25).ToList();

答案 2 :(得分:0)

试试这个

for(i=0;i<noOfPages;i++)
{
   var records = context.couponservice.Query().Skip(i * 25).Take(25).ToList();
}

每次都会给你新的记录。

答案 3 :(得分:0)

跟踪您已经提取的项目。例如,将ID存储在List或其他内容中。然后只收集源ID不在列表中的项目。从该结果中,您可以选择25个随机项目。

例如:

//Your datasource
var source = new Dictionary<int, string>
{
    {1, "One"},
    {2, "Two"},
    {3, "Three"},
    {4, "Four"},
    {5, "Five"},
    {6, "Six"},
    {7, "Seven"},
    {8, "Eight"},
    {9, "Nine"},
    {10, "Ten"}
};

//The ID's of already fetched items
var taken = new List<int> { 2, 7, 3, 6 };

//Subset: all items that haven't been taken yet:
var temp = source.Where(s => taken.Contains(s.Key) == false);

从'temp'您可以立即选择随机元素,并将这些项目的ID添加到列表中。