Beispiel #1
0
        public static new string Format(Expression expression)
        {
            var formatter = new AccessFormatter(new AccessLanguage());

            formatter.FormatWithParameters(expression);
            return(formatter.ToString());
        }
        public static string Format(Expression expression, QueryLanguage language)
        {
            var formatter = new AccessFormatter(language);

            if (formatter != null)
            {
                formatter.FormatWithParameters(expression);
            }

            return(formatter.ToString());
        }
 public static new string Format(Expression expression)
 {
     var formatter = new AccessFormatter(new AccessLanguage());
     formatter.FormatWithParameters(expression);
     return formatter.ToString();
 }
Beispiel #4
0
 public override string Format(Expression expression)
 {
     return(AccessFormatter.Format(expression));
 }
Beispiel #5
0
 public override string Format(Expression expression) => AccessFormatter.Format(expression);