我正在开发一个 RIA 服务应用程序,但在服务器端分页和 DataGrid 中分页项的显示方面存在问题。我正在使用自定义 DomainService,其中 PageIndex 和 PageSize 通过 Query 以及几个过滤器参数传递。
问题是我的第一页结果显示正确,但是当我翻到下一组结果时,我的项目被添加到列表的末尾,而不仅仅是显示从服务器返回的新结果。即,我的 DataGrid 正在显示从服务器返回的所有累积对象,而不仅仅是显示返回的最新结果页面。
首先,我使用的是 DomainCollectionView 和 DomainCollectionViewLoader:
_context = new StudyQueryContext();
_entityList = new EntityList(_context.PortalStudies);
_loader = new DomainCollectionViewLoader(Load, LoadComplete);
PortalStudies = new DomainCollectionView(_loader, _context.PortalStudies);
然后我有相当标准的 Load() 和 LoadComplete() 方法:
public LoadOperation Load()
{
if (IsLoading)
{
return null;
}
IsLoading = true;
EntityQuery q = _context.GetPortalStudyQuery(PatientsName, PatientId, AccessionNumber, PortalStudies.PageIndex, PortalStudies.PageSize);
return _context.Load(q);
}
private void LoadComplete(LoadOperation op)
{
if (op.HasError)
{
System.Windows.MessageBox.Show(op.Error.ToString(), "Search Error", System.Windows.MessageBoxButton.OK);
op.MarkErrorAsHandled();
}
else if (!op.IsCanceled)
{
_entityList.Source = op.Entities;
_context.PortalCountAll(PatientsName, PatientId, AccessionNumber, CountAllComplete, null);
}
IsLoading = false;
}
请注意,我在 PortalCountAll 方法返回时分配了 TotalItemCount。
为了完整起见,我的 DomainService Query 方法的签名如下:
[Query]
public IEnumerable<PortalStudy> GetPortalStudy(string patientsName, string patientId, string accessionNumber, int startIndex, int pageSize)
{ }
我认为问题在于我如何设置 _entityList 以及在 LoadComplete() 方法中分配结果:
_entityList.Source = op.Entities;
似乎在所有基于 LINQ 的示例中,此分配似乎只允许在 DataGrid 中显示当前结果。由于某种原因,使用自定义查询方法时似乎并非如此。
我想知道更改页面时清除 DataGrid 的首选方法是什么?我知道我可以在查询之前调用 _context.PortalStudies.Clear() 来清除结果,但这会导致页面上的项目闪烁,并且在查询从服务器返回之前不会再次填充。使用自定义 DomainService 时仅显示当前结果页面的正确方法是什么?