public AzureTableStorageWithCache(string connstionString, string tableName, ILog log, bool caseSensitive = true)
 {
     _cache = new NoSqlTableInMemory <T>();
     _table = new AzureTableStorage <T>(connstionString, tableName, log, caseSensitive);
     Init();
 }
 public AzureTableStorageWithCache(string connstionString, string tableName, ILog log)
 {
     _cache = new NoSqlTableInMemory <T>();
     _table = new AzureTableStorage <T>(connstionString, tableName, log);
     Init();
 }