我似乎无法让我的数据寻呼机工作。我一直在寻找答案,似乎我得到的错误是“ID为'searchResults'的ListView必须有一个数据源,该数据源要么实现ICollection,要么如果AllowPaging为真,则可以执行数据源分页。” 很常见,通常答案是将 ToArray() 放在 DataSource 上。但是我不确定如何将数组放在我的链接语句中。有人可以请教。
searchResults.DataSource = from r in response.Results
select new
{
Title = r[SearchContentProperty.Title],
Summary = r[SearchContentProperty.HighlightedSummary]
};
searchResults.DataBind();