コード例 #1
0
        public JsStoreData LoadList(ILoadListQuery query)
        {
            var dataPage = _entitiesLoader.LoadList(EntityDescriptor.EntityType,
                                                    Bindings,
                                                    query.SortItems,
                                                    query.Conditions.OfType <IFieldValueCondition>(),
                                                    query.Page,
                                                    true);

            return(TableSerializer.Serialize(dataPage.Data, dataPage.Count));
        }