Esempio n. 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);
        }
Esempio n. 2
0
 public static List <T> GetResults <T>(this RedisText from)
 => from.Children == null
        ? new List <T>()
        : from.Children.ConvertAll(x => x.Text.FromJson <T>());
Esempio n. 3
0
 public static List <string> GetResults(this RedisText from)
 => from.Children == null
        ? new List <string>()
        : from.Children.ConvertAll(x => x.Text);
Esempio n. 4
0
 public static T GetResult <T>(this RedisText from) => from.Text.FromJson <T>();
Esempio n. 5
0
 public static string GetResult(this RedisText from) => from.Text;
Esempio n. 6
0
        public static String ToJsonInfo(this RedisText redisText)
        {
            var source = redisText.GetResult();

            return(Parse(source));
        }
Esempio n. 7
0
 public static T GetResult <T>(this RedisText from)
 {
     return(from.Text.FromJson <T>());
 }
Esempio n. 8
0
 public static string GetResult(this RedisText from)
 {
     return(from.Text);
 }