/// <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))); }
/// <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))); }
/// <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));