ScriptingOptions.DriPrimaryKey Property
Gets or sets the Boolean property value that specifies whether dependency relationships that are defined in primary keys which have enforced declarative referential integrity are included in the script.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
The following code example specifies that dependency relationships defined in primary keys which have enforced declarative referential integrity are scripted.
Visual Basic
Dim scOps As New ScriptingOptions() scOps.DriPrimaryKey = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions $scOps.DriPrimaryKey = $TRUE
