Proprietà IsPrimaryFile
Gets the Boolean property value that specifies whether the data file is the primary file of the database.
Spazio dei nomi: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)> _
Public Property IsPrimaryFile As Boolean
Get
Set
'Utilizzo
Dim instance As DataFile
Dim value As Boolean
value = instance.IsPrimaryFile
instance.IsPrimaryFile = value
[SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)]
public bool IsPrimaryFile { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::ReadOnlyAfterCreation)]
public:
property bool IsPrimaryFile {
bool get ();
void set (bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)>]
member IsPrimaryFile : bool with get, set
function get IsPrimaryFile () : boolean
function set IsPrimaryFile (value : boolean)
Valore proprietà
Tipo: System. . :: . .Boolean
A Boolean value that specifies whether the data file is the primary file or a secondary file.
If True, the data file the primary file. Otherwise, False (default).
Osservazioni
The primary file has an .mdf file extension and secondary files have an .ndf file extension.
Vedere anche