Ejemplo n.º 1
0
 public ViewJoin(string table, ViewColumn master, ViewColumn slave)
 {
     this.masterColumn = master;
     this.slaveColumn  = slave;
     this.table        = table;
 }
Ejemplo n.º 2
0
 public ViewJoin(string table, ViewColumn master, ViewColumn slave)
 {
     this.masterColumn = master;
     this.slaveColumn = slave;
     this.table = table;
 }
Ejemplo n.º 3
0
 public ComputedViewColumn(ViewColumn cf, string functionName, string alias)
     : base(null, alias, true)
 {
     this.computedFrom = cf;
     this.functionName = functionName;
 }
Ejemplo n.º 4
0
 public ComputedViewColumn(ViewColumn cf, string functionName, string alias)
     : base(null,alias,true)
 {
     this.computedFrom = cf;
     this.functionName = functionName;
 }