Gets all of the table keys for a given table.

Namespace: SchemaExplorer
Assembly: SchemaExplorer (in SchemaExplorer.dll) Version: 6.0.0.0 (7.0.0.15127)

Syntax

C#
TableKeySchema[] GetTableKeys(
	string connectionString,
	TableSchema table
)
Visual Basic
Function GetTableKeys ( 
	connectionString As String,
	table As TableSchema
) As TableKeySchema()

Parameters

connectionString
Type: System..::..String
The connection string used to connect to the target database.
table
Type: SchemaExplorer..::..TableSchema
The table schema.

Return Value

Type: array<TableKeySchema>[]()[][]
An array of keys for a specific table.

See Also