예제 #1
0
 public void InvalidateCache()
 {
     Cache.InvalidateAllObjects <Category>();
 }
예제 #2
0
 public void InvalidateCache()
 {
     Cache.InvalidateAllObjects <Pie>();
 }
예제 #3
0
 /// <summary>
 /// Remove all entities by the given type.
 /// </summary>
 public virtual async Task RemoveAll<T>() where T : class, IKeyProvider
 {
     await _blobCache.InvalidateAllObjects<T>();
 }
예제 #4
0
 public void InvalidateCache()
 {
     Cache.InvalidateAllObjects <Product>();
 }
예제 #5
0
 public void InvalidateCache()
 {
     Cache.InvalidateAllObjects <Angajati>();
 }
예제 #6
0
 public void InvalidateCache() => Cache.InvalidateAllObjects <User>();
예제 #7
0
 public void InvalidateCaches <T>()
 {
     Cache.InvalidateAllObjects <T>();
 }
 public void InvalidateCache()
 {
     Cache.InvalidateAllObjects <Booklist>();
 }