查询结果不能枚举不止一次(The query results cannot be enumerate

2019-07-04 05:34发布

考虑下面的方法。 我得到的例外是问,而中继器结合。

Bindrepeater:

private void BindRepeater()
{
    var idx = ListingPager.CurrentIndex;
    int itemCount;
    var keyword = Keywords.Text.Trim();
    var location = Area.Text.Trim();
    var list = _listing.GetBusinessListings(location, keyword, idx, out itemCount);
    ListingPager.ItemCount = itemCount;
    BusinessListingsRepeater.DataSource = list.ToList(); // exception here
    BusinessListingsRepeater.DataBind();
}

GetBusinessListings:

public IEnumerable<Listing> GetBusinessListings(string location, string keyword, int index, out int itemcount)
{
    var skip = GetItemsToSkip(index);
    var result = CompiledQueries.GetActiveListings(Context);
    if (!string.IsNullOrEmpty(location))
    {
      result= result.Where(c => c.Address.Contains(location));
    }
    if (!string.IsNullOrEmpty(keyword))
    {
        result = result.Where(c => c.RelatedKeywords.Contains(keyword) || c.Description.Contains(keyword));
    }
    var list = result;

    itemcount = list.Count();
    return result.Skip(skip).Take(10);

}

GetActiveListings:

/// <summary>
///   Returns user specific listing
/// </summary>
public static readonly Func<DataContext, IQueryable<Listing>> GetActiveListings =
    CompiledQuery.Compile((DataContext db)
                          => from l in db.GetTable<Listing>()
                             where l.IsActive 
                             select l);

Answer 1:

当您指定itemcount您正在执行的查询的第一次。 你为什么需要这个? 我的建议是不要检索那里,只是项目计数

return result.Skip(skip).Take(10).ToList();

基本上你不能兼得,只获取你所需要的结果,并在一个查询检索的总数。 您可以使用,虽然两个单独querys。



Answer 2:

您可能要坚持你的结果作为一个集合,而不是一个IQueryable

var list = result.ToArray();

itemcount = list.Length;
return list.Skip(skip).Take(10);

上面的代码可能不用于寻呼正确。 您可能会运行两次查询。



文章来源: The query results cannot be enumerated more than once