예제 #1
0
 /// <summary>
 /// Adds a table to the database
 /// </summary>
 /// <param name="TableName">Table name</param>
 public override ITable AddTable(string TableName)
 {
     return(Tables.AddAndReturn(new Table(TableName, this)));
 }
예제 #2
0
 /// <summary>
 /// Adds a table to the database
 /// </summary>
 /// <param name="TableName">Table name</param>
 public virtual Table AddTable(string TableName)
 {
     return(Tables.AddAndReturn(new Table(TableName, this)));
 }
예제 #3
0
 /// <summary>
 /// Adds a table to the database
 /// </summary>
 /// <param name="tableName">Table name</param>
 /// <param name="schemaName">Name of the schema.</param>
 /// <returns>Table that was created/added</returns>
 public override ITable AddTable(string tableName, string schemaName) => Tables.AddAndReturn(new Table(tableName, schemaName, this));