Obtains [SchemaIndexInfo] according to provider for specified [Table] via [Database] connected. This method may needs some privilege according to the database product and its version. Return
SchemaIndexInfo Description
Name Name of the index.
IsPrimary Is primary key index.
IsUnique Is index unique.
IsClustered Is index clustered.
IsUniqueConstraintIs index unique-constraint.
Columns Columns of the index.
Examples Following section demonstrates reading the indexes of table by its name.
        {{hl}}var ddl = connection.DDL();{{/hl}}

		var columns = ddl.{{hl}}GeTableIndexes("table_name"){{/hl}};
	
vFa43T

Following section demonstrates reading the indexes of table by its instance.
		var indexes = (new Orders()).GetInfo().Indexes;
	
vFa43T