示例#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");
 }