예제 #1
0
파일: Table.cs 프로젝트: jgshort/SqlDom
 public Table(Schema schema, string name, string alias, ClauseTableSample tableSampleClause, TableHint tableHints)
     : this(schema, name, alias, tableSampleClause)
 {
     TableHints = tableHints;
 }
예제 #2
0
파일: Table.cs 프로젝트: jgshort/SqlDom
 public Table(Schema schema, string name, string alias, ClauseTableSample tableSampleClause)
     : this(schema, name, alias)
 {
     SampleClause = tableSampleClause;
 }
예제 #3
0
파일: Table.cs 프로젝트: jgshort/SqlDom
 public static Table Default(string name, string alias, ClauseTableSample tableSampleClause, TableHint tableHints)
 {
     return new Table(name, alias, tableSampleClause, tableHints);
 }
예제 #4
0
파일: Table.cs 프로젝트: jgshort/SqlDom
 public Table(string name, string alias, ClauseTableSample tableSampleClause, TableHint tableHints)
     : this(Schema.Dbo, name, alias, tableSampleClause, tableHints)
 {
     //
 }
예제 #5
0
 public void ClauseTableSampleConstructorTest()
 {
     ClauseTableSample target = new ClauseTableSample();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }