Exemplo n.º 1
0
        protected T Inflate <T>(BigRow.Sample r)
        {
            var cache = ReflectionCache.For <T>();
            var row   = DataClient.Value.GetRowsAsync(cache.TableName, r.Key, rowLimit: 1, encoding: cache.TableEncoding).Result.ToArray();

            return(row.Any() ? Inflate <T>(row.First()) : default(T));
        }
Exemplo n.º 2
0
 protected T Inflate <T>(BigRow.Sample r)
 {
     throw new NotImplementedException();
 }