Gets a description of the foreign keys available

Namespace: NHibernate.Dialect.Schema
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
DataTable GetForeignKeys(
	string catalog,
	string schema,
	string table
)
Visual Basic
Function GetForeignKeys ( _
	catalog As String, _
	schema As String, _
	table As String _
) As DataTable
Visual C++
DataTable^ GetForeignKeys(
	String^ catalog, 
	String^ schema, 
	String^ table
)

Parameters

catalog
Type: System..::..String
A catalog, retrieves those without a catalog
schema
Type: System..::..String
Schema name, retrieves those without the schema
table
Type: System..::..String
A table name

Return Value

A description of the foreign keys available

See Also