fetchFromBackend好猜,我是在后台可以直接把query的参数传入过去就行了,比如我用的mysql的话,那么基本上取数据就落实到这么一句sql上:
select * from some_entity_table where filter_parameter=query_object_filter limit offset,limit
(不知道是不是这个意思)
sizeInBackend就不是很明朗了,官方代码注释是“后台里可用条目的计数(Counts the number of items available in the back end)”
是不是就相当于:select (*) from some_entity_table?
那,query的offset和limit岂不是没用吗
。。。。。。