Example #1
0
        public static void RemovePersistedValuesFor(this DynamicDataStore store, string pluginId)
        {
            var existingBags = store.FindAsPropertyBag("PluginId", pluginId);

            foreach (var existingBag in existingBags)
            {
                store.Delete(existingBag);
            }
        }