Hi Santiago, you can use the function below to remove a CRM cache by entity. public static void ClearCache(string entityName) { const string format = "adxdependency:crm:entity:{0}"; var dependency = string.Format(format, entityName).ToLower(); var cache = Microsoft.Xrm.Client.Caching.CacheManager.GetBaseCache(); cache.Remove(dependency); } msdn.microsoft.com/.../microsoft.xrm.client.caching.objectcachemanager.aspx Thinks, Youssef.
↧