DbContextConfiguration.UseDatabaseNullSemantics 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出比較兩個運算元時是否要顯示資料庫 Null 語意,這兩者都可能為 Null。 預設值為 false。
例如, (operand1 == operand2) 會轉譯為:
(運算元1 = operand2)
如果 UseDatabaseNullSemantics 分別為 true,則為
( ( (operand1 = operand2) AND (NOT (operand1 IS Null OR operand2 IS Null) ) ) OR ( (operand1 IS Null) AND (operand2 IS Null) ) )
如果 UseDatabaseNullSemantics 為 false,則為 。
public bool UseDatabaseNullSemantics { get; set; }
member this.UseDatabaseNullSemantics : bool with get, set
Public Property UseDatabaseNullSemantics As Boolean
屬性值
true
如果已啟用資料庫 Null 比較行為,則為 ,否則 false
為 。