Ejemplo n.º 1
0
        public SelectExpression(QualifiedName selection, Name alias)
        {
            if (selection == null)
                throw new ArgumentNullException("selection", "selection is null.");

            this.selection = selection;
            this.alias = alias;
        }
Ejemplo n.º 2
0
 public SelectExpression(QualifiedName selection)
     : this(selection, null)
 {
 }
Ejemplo n.º 3
0
 public FromTable(QualifiedName table)
 {
     this.table = table;
 }