使用MVC实体框架,我正在使用AJAX调用一个函数,该函数传入跳过和接受参数。

[HttpGet]
public async Task<ActionResult> _ViewMore( int take, int skip)
{
    var c = await GetContent( take, skip);
    return View(c)
}

public async Task<List<PartialContent>> GetContentForCulture(int take, int skip)
{
    return await ContextHelper.SearchContent(take, skip);
}

public static async Task<List<PartialContent>> SearchContent( int take, int skip)
{
    try
    {
        using (var context = new Context())
        {
            var content = context.ContentEntities.SearchContent(take, skip);

            var f = await content.Select(s => new PartialContent
            {
                Subtype = s.Subtype,
                Id = s.Id,
                MainImage = s.MainImage,

            }).ToListAsync();

            return f;
        }
    }
    catch (Exception ex)
    {
        //      Log.Err(ex.Message, ex);
        return null;
    }
}

public static IQueryable<T> SearchContent<T>(this IQueryable<T> source,  int take, int skip)
    where T : ContentEntity
{
    source.Where(m => m.IsPublished ).OrderByDescending(m => m.DatePublished).Skip(skip).Take(take)

}


我的问题是,即使我调试并且跳过值增加,每次调用该函数时,也会返回相同的行,并且有100行要提取。

最佳答案

解决方案是按照Damien_The_Unbeliever的建议添加另一个order by子句

关于c# - LINQ IQueryable使用跳过和获取返回相同的行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38188869/

10-13 08:06