DbCommandTree.UseDatabaseNullSemantics Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur indiquant si la sémantique null de base de données est affichée lors de la comparaison de deux opérandes, qui sont tous deux potentiellement nullables. La valeur par défaut est true.
Par exemple (operand1 == operand2) sera traduit en :
(operand1 = operand2)
si UseDatabaseNullSemantics a la valeur true, respectivement
(((operand1 = operand2) AND (NOT (operand1 IS NULL OR operand2 IS NULL))) OR ((operand1 IS NULL) AND (operand2 IS NULL)))
si UseDatabaseNullSemantics a la valeur false.
public bool UseDatabaseNullSemantics { get; }
member this.UseDatabaseNullSemantics : bool
Public ReadOnly Property UseDatabaseNullSemantics As Boolean
Valeur de propriété
true
si le comportement de comparaison null de base de données est activé, sinon false
.