Example #1
0
        protected string ExpressionParse <T>(SysExp.Expression <Func <T, bool> > exp)
        {
            StringBuilder builder = new StringBuilder();

            ExpressionParse(exp.Body, builder);

            return(builder.ToString());
        }
Example #2
0
 public string ToString <T>(SysExp.Expression <Func <T, bool> > fun)
 {
     return(string.Format("Where {0} ", ExpressionParse <T>(fun)));
 }