Exemplo n.º 1
0
 public SqlMaker(string formalName)
 {
     this.TableName = formalName;
     this.template  = new SqlTemplate(formalName);
 }
Exemplo n.º 2
0
 public TableClause(ITableSchema schema)
 {
     this.schema    = schema;
     this.tableName = schema.TableName;
     this.template  = new SqlTemplate(tableName);
 }