IsDeterministic Propiedad
Obtiene o establece el valor de propiedad Boolean que especifica si la función definida por el usuario es determinista.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase)> _
Public ReadOnly Property IsDeterministic As Boolean
Get
'Uso
Dim instance As UserDefinedFunction
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
Valor de la propiedad
Tipo: System. . :: . .Boolean
Valor Boolean que especifica si la función definida por el usuario es determinista o no.
Si es True, la función definida por el usuario es determinista.
Si es False (valor predeterminado), la función definida por el usuario no es determinista.
Comentarios
A computed column can be used as a key column in an index or as part of any primary key or unique constraint, if the computed column value is defined by a deterministic expression and the data type of the result is allowed in indexed columns.
An application can use this property to determine if a computed column that depends on a user-defined function can be used in an index.