Ejemplo n.º 1
0
        private async Task UpdateEntityStore(string entityName, string key, IDictionary <string, string> updatedEntityProps)
        {
            var updatedEntity = await _insertionEngine.EncodeEntity(entityName, key, updatedEntityProps);

            await _stringClient.StoreValue(Helpers.GetEntityStoreKey(entityName, key), updatedEntity);
        }