TableExist is used to test for the existence of a table. This method may needs some privilege according to the database product and its version. Examples Following section demonstrates determining whether the specified [Table] exists.
        {{hl}}var ddl = connection.DDL();{{/hl}}

		// by table alias
		ddl.{{hl}}TableExist(new Orders()){{/hl}};

		// by table type
		ddl.{{hl}}TableExist<Orders>(){{/hl}};

		// by table name
		ddl.{{hl}}TableExist("table1"){{/hl}};
	
L5FKBJ