Merges the entries from the passed feed with the current set of entries (server version only) in the cache.
id<Caching> cacheLocal = [[Cache alloc] init];
NSError* error = nil;
ODataDataParser* parser = [[ODataDataParser alloc] initWithEntitySchema:entitySchema andServiceDocument:serviceDoc];
[parser parse:responseData];
[cacheLocal mergeEntriesFromFeed:[parser getFeed] forUrlKey:urlKey withError:&error withCompletionBlock:^(NSNotification *notification) {
NSLog("%", notification);
}];
if(error)
{
NSLog("Merge Error: %@", error);
return;
}