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