Obtains database [Table-Information] according to provider via [Database] currently connected.
| SchemaTableInfo | Description |
|---|---|
| Catalog | Database or Catalog name which has the table |
| Schema | Name of schema that contains the table. |
| Table | Table name. |
{{hl}}var ddl = connection.DDL();{{/hl}}
foreach (var tb in ddl.{{hl}}GetTables(){{/hl}})
Console.WriteLine("\t" + tb.Schema + "." + tb.Name);