Método Add (ForeignKeyColumn, String)
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 (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Sub Add ( _
foreignKeyColumn As ForeignKeyColumn, _
insertAtColumnName As String _
)
'Uso
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
)
Parâmetros
- foreignKeyColumn
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .ForeignKeyColumn
A ForeignKeyColumn object value that is to be added into the foreign key column collection.
- insertAtColumnName
Tipo: 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.
Consulte também