Condividi tramite


DbCommandTree.UseDatabaseNullSemantics Proprietà

Definizione

Ottiene un valore che indica se la semantica null del database viene visualizzata durante il confronto di due operandi, entrambi potenzialmente nullable. Il valore predefinito è true.

Ad esempio (operando1 == operando2) verrà tradotto come:

(operando1 = operando2)

se UseDatabaseNullSemantics è true, rispettivamente

(((operand1 = operand2) AND (NOT (operand1 IS NULL OR operand2 IS NULL))) OR ((operand1 IS NULL) AND (operand2 IS NULL)))

se UseDatabaseNullSemantics è false.

public bool UseDatabaseNullSemantics { get; }
member this.UseDatabaseNullSemantics : bool
Public ReadOnly Property UseDatabaseNullSemantics As Boolean

Valore della proprietà

true se il comportamento di confronto dei valori Null del database è abilitato; in caso contrario false , .

Si applica a