Beispiel #1
0
        public bool VisitExprTableName(ExprTableName expr, TCtx arg)
        {
            var res = this.Visit(expr, "TableName", arg, out var argOut);

            this.VisitPlainProperty("Name", expr.Name, argOut);
            this._visitor.EndVisitExpr(expr, arg);
            return(res);
        }
Beispiel #2
0
 public static ExprTableName WithName(this ExprTableName original, String newName)
 => new ExprTableName(name: newName);
Beispiel #3
0
 public static ExprTableFullName WithTableName(this ExprTableFullName original, ExprTableName newTableName)
 => new ExprTableFullName(dbSchema: original.DbSchema, tableName: newTableName);
Beispiel #4
0
 public bool VisitExprTableName(ExprTableName tableName, IExpr?parent)
 {
     this.AppendName(tableName.Name);
     return(true);
 }