Пример #1
0
        public static RedisText ToRedisText(this RedisData data)
        {
            if (data == null)
            {
                return(null); // In Transaction
            }

            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);
        }
Пример #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>()));
 }
Пример #3
0
 public static List <string> GetResults(this RedisText from)
 {
     return(from.Children == null
         ? new List <string>()
         : from.Children.ConvertAll(x => x.Text));
 }
Пример #4
0
 public static T GetResult <T>(this RedisText from)
 {
     return(from.Text.FromJson <T>());
 }
Пример #5
0
        public static string ToJsonInfo(this RedisText redisText)
        {
            var source = redisText.GetResult();

            return(Parse(source));
        }
Пример #6
0
 public static string GetResult(this RedisText from)
 {
     return(from.Text);
 }