我试图在RIA Services同时进行分组和调用(在数据格中) 。 我已经有一个非常精密的用户控制程序, 其基础是卓越的域采集查看。 然而, 我无法完成分组工作 。
我在样本中添加了这条线:
this.CollectionView.GroupDescriptions.Add(new PropertyGroupDescription("Int32"));
Note about the sample: I changed how Int32 is being assigned as key % 2, so there should be two resulting groups, which should have hundreds of items per group. The paging is set to 10 items. No grouping is applied at the query level.
因此,在这种情况下,我希望分组页头显示项目总数,然而,它只是0组,因为项目计数为10,这显然不正确。它只是在第一页显示项目计数。
Question Did any make grouping and paging work together with or without DomainCollectionView?
有关上下文,请参见关于Domain CollectionView 和的文章,http://code.msdn.microsoft.com/Server-Side-Filtaring-Mithebeda" rel=“nofollow” > 标本上贴的样本 。