Example #1
0
        public static RedisText ToRedisText(this RedisData data)
        {
            var to = new RedisText();

            if (data.Data != null)
            {
                to.Text = data.Data.FromUtf8Bytes();
            }

            if (data.Children != null)
            {
                to.Children = data.Children.ConvertAll(x => x.ToRedisText());
            }

            return(to);
        }
Example #2
0
 public static List <T> GetResults <T>(this RedisText from)
 {
     return(from.Children == null
          ? new List <T>()
          : from.Children.ConvertAll(x => x.Text.FromJson <T>()));
 }
Example #3
0
 public static T GetResult <T>(this RedisText from)
 {
     return(from.Text.FromJson <T>());
 }
Example #4
0
 public static List <string> GetResults(this RedisText from)
 {
     return(from.Children == null
          ? new List <string>()
          : from.Children.ConvertAll(x => x.Text));
 }
Example #5
0
 public static string GetResult(this RedisText from)
 {
     return(from.Text);
 }