Exemplo n.º 1
0
 public override RxKqlScalarValue VisitPathExpression(PathExpression node)
 {
     return(new RxKqlScalarValue
     {
         Left = node.ToString().Trim().Replace(" . ", "_"),
         Right = node.Accept(new ScalarValueConverter())
     });
 }