Propriété IsDeterministic

Obtient ou définit la valeur de la propriété Boolean qui spécifie si la valeur d'une colonne calculée peut changer lors d'appels ultérieurs.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase)> _
Public ReadOnly Property IsDeterministic As Boolean
    Get
'Utilisation
Dim instance As Column
Dim value As Boolean

value = instance.IsDeterministic
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase)]
public bool IsDeterministic { get; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase)]
public:
property bool IsDeterministic {
    bool get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase)>]
member IsDeterministic : bool
function get IsDeterministic () : boolean

Valeur de propriété

Type : System. . :: . .Boolean
Valeur Boolean qui spécifie si une colonne calculée peut changer entre des appels.

Notes

If the computed column contained a value that was calculated from the current date, for example, the column would not be deterministic. The value of the column would change as the date changes and therefore would be different for subsequent invocations.