为什么 DataPager 忽略我的自定义 IPgedCollectionView
我编写了 IPgedCollectionView
的实现,当我将其挂接到 DataPager
时,它保持为空且禁用。我正在为 IPgedCollectionView
和 ICollectionView
、IEnumerable
、IEnumerable
和通知提供成员。我做错了什么?
另外,是否已经有一个用于 silverlight 的 IPgedCollectionView
实现,它包装了 RIA 服务 EntityQuery
,以便提供一次仅请求单页数据的服务器端排序?
I've written a implementation of IPagedCollectionView
and when I hook it to a DataPager
, it remains empty and disabled. I'm providing members for IPagedCollectionView
and ICollectionView
, IEnumerable
, IEnumerable<T>
, and the notifies. What am I doing wrong?
Also is there already an implementation of IPagedCollectionView
for silverlight that wraps around a RIA Services EntityQuery
in order to provide server-side sorting that requests only a single page of data at a time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IPgedCollectionView
必须与ICollectionView
并行实现,而不是单独实现。我不知道你的问题是什么,但你可以检查 此示例来自 Simon Ferquel。IPagedCollectionView
must be implemented side-by-side withICollectionView
, not alone. I don't know what can be your problem, but you could check this sample from Simon Ferquel.