开发者

Ria Framework DomainDataSource MoveToNextPage, MoveToPage, MoveToFirstPage doesn't move pages

I'm attempting to write a save results extension to the DomainDatasourceView. I can successfully write the contents of the current page of results but when I attempt to call MoveToNextPage(), the PageIndex stays current. MSDN docs regard开发者_运维问答ing this don't provide any details other than MoveToNextPage returns a bool is it successfully moves to the next page.

The following sample code results in an infinite loop, and the Current page is never changed.

private void WriteResults(DomainDataSourceView resultsview)
{
    StringBuilder csvdata = new StringBuilder();
    ... Do Work on current page ...
    if(resultsview.CanChangePage && resultsview.MoveToNextPage())
    {
        csvdata.Append(WriteResults(resultsview));
    }
}

Do I need to listen for the PageChanged Event to continue Saving Results?

Do I need to call Load on the DomainDataSource for each page?

The MSDN Docs on DomainDataSourceView doesn't go into too much details on this subject.

[Edit] After playing around some more, I was able to determine that the Move...Page commands do call the the DomainDataSource Load operation, however its another Async call, so any consecutive work that needs to be done on the loaded pages, should be handled accordingly.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜