Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Adds a ForeignKeyColumn object to the position after a specified, existing ForeignKeyColumn object in the foreign key column collection.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub Add ( _
foreignKeyColumn As ForeignKeyColumn, _
insertAtColumnName As String _
)
'Usage
Dim instance As ForeignKeyColumnCollection
Dim foreignKeyColumn As ForeignKeyColumn
Dim insertAtColumnName As String
instance.Add(foreignKeyColumn, insertAtColumnName)
public void Add(
ForeignKeyColumn foreignKeyColumn,
string insertAtColumnName
)
public:
void Add(
ForeignKeyColumn^ foreignKeyColumn,
String^ insertAtColumnName
)
member Add :
foreignKeyColumn:ForeignKeyColumn *
insertAtColumnName:string -> unit
public function Add(
foreignKeyColumn : ForeignKeyColumn,
insertAtColumnName : String
)
Parameters
- foreignKeyColumn
Type: Microsoft.SqlServer.Management.Smo.ForeignKeyColumn
A ForeignKeyColumn object value that is to be added into the foreign key column collection.
- insertAtColumnName
Type: System.String
A String value that specifies the name of the existing ForeignKeyColumn object in the collection after which to insert the new ForeignKeyColumn object.