Initializes a new instance of the IndexSchema class

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

Syntax

C#
public IndexSchema(
	TableSchema table,
	string name,
	bool isPrimaryKey,
	bool isUnique,
	bool isClustered,
	ExtendedProperty[] extendedProperties
)
Visual Basic
Public Sub New ( 
	table As TableSchema,
	name As String,
	isPrimaryKey As Boolean,
	isUnique As Boolean,
	isClustered As Boolean,
	extendedProperties As ExtendedProperty()
)

Parameters

table
Type: SchemaExplorer..::..TableSchema
name
Type: System..::..String
isPrimaryKey
Type: System..::..Boolean
isUnique
Type: System..::..Boolean
isClustered
Type: System..::..Boolean
extendedProperties
Type: array<SchemaExplorer..::..ExtendedProperty>[]()[][]

See Also