As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
KCSCachedStore* store = [KCSCachedStore storeWithCollection:[KCSCollection collectionFromString:@"Reference" ofClass:[TheClass class]] options:nil];
NSArray* export = [store exportCache];
A
Aris Sarris
said
over 9 years ago
And how do I do that?
M
Mike
said
over 9 years ago
Export should just export the current collection. The reference values will be the KinveyRef dictionaries. If you need to also export the referenced collection, you'll have to create a store to do that too.
Aris Sarris
In objectsornill I receive the related objects as entities while when doing exportCache all I get is references.
My store is a `KCSCachedStore` and is configured as `KCSLinkedAppdataStore` with options
_store = [KCSLinkedAppdataStore storeWithOptions:
@{
KCSStoreKeyCollectionName : @"Activity",
KCSStoreKeyCollectionTemplateClass : [ActionObj class],
KCSStoreKeyCachePolicy : @(KCSCachePolicyNetworkFirst),
KCSStoreKeyOfflineUpdateEnabled : @YES}];
Is is unsupported or am I doing something wrong?
Thanks