IForeignKeyColumn Interface
Represents a SQL Server foreign key column.
Namespace: Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly: Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)
Syntax
'Declaration
Public Interface IForeignKeyColumn _
Inherits IMetadataObject
'Usage
Dim instance As IForeignKeyColumn
public interface IForeignKeyColumn : IMetadataObject
public interface class IForeignKeyColumn : IMetadataObject
type IForeignKeyColumn =
interface
interface IMetadataObject
end
public interface IForeignKeyColumn extends IMetadataObject
The IForeignKeyColumn type exposes the following members.
Properties
Name | Description | |
---|---|---|
Name | Gets the name of the metadata object. (Inherited from IMetadataObject.) | |
ReferencedColumn | Gets the referenced column. | |
ReferencingColumn | Gets the referencing column. |
Top
Methods
Name | Description | |
---|---|---|
Accept<T> | Accepts a visit from the specified IMetadataObjectVisitor<T> object. (Inherited from IMetadataObject.) |
Top