GetTableInstance is used to initialize the instance of [Odb.Table.ITable], according to table-information in database. Examples Following section demonstrates generating the instance of the table.
        {{hl}}var ddl = connection.DDL();{{/hl}}

		// by table type
		var tb1 = ddl.{{hl}}GetTableInstance<Orders>(){{/hl}};
		var tb2 = ddl.{{hl}}GetTableInstance(typeof(Orders)()){{/hl}};

		// by dynamic from database
		var tb3 = ddl.{{hl}}GetTableInstance("Orders"){{/hl}};