Provides a constant for use with the ULConnection.GetSchema(String) that represents the ForeignKeys collection.
Visual Basic
Public Shared Readonly Property ForeignKeys As String
C#
public const string ForeignKeys { get;}
A string representing the name of the ForeignKeys collection.
The following code fills a DataTable with the ForeignKeys collection.
' Visual Basic Dim schema As DataTable = _ conn.GetSchema( ULMetaDataCollectionNames.ForeignKeys ) // C# DataTable schema = conn.GetSchema( ULMetaDataCollectionNames.ForeignKeys );