Esempio n. 1
0
        public static TableAlias Create(string alias)
        {
            var res = new TableAlias();

            res.Stack.AddLast(Identifier.Create(alias));

            return(res);
        }
Esempio n. 2
0
        public static TableName Create(string tableName)
        {
            var ntn = new TableName();

            ntn.Stack.AddLast(Identifier.Create(tableName));

            return(ntn);
        }
Esempio n. 3
0
        public static ColumnName Create(string columnName)
        {
            var ntn = new ColumnName();

            ntn.Stack.AddLast(Identifier.Create(columnName));

            return(ntn);
        }