DbContextConfiguration.UseDatabaseNullSemantics プロパティ
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
null になる可能性のある 2 つのオペランドを比較する際、データベースの null セマンティクスを使用するかどうかを示す値を取得または設定します。 既定値は false です。 たとえば、(operand1 == operand2) は次のように変換されます。UseDatabaseNullSemantics が true の場合は (operand1 = operand2)。UseDatabaseNullSemantics が false の場合はそれぞれ (((operand1 = operand2) AND (NOT (operand1 IS NULL OR operand2 IS NULL))) OR ((operand1 IS NULL) AND (operand2 IS NULL)))。
名前空間: System.Data.Entity.Infrastructure
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Property UseDatabaseNullSemantics As Boolean
Get
Set
'使用
Dim instance As DbContextConfiguration
Dim value As Boolean
value = instance.UseDatabaseNullSemantics
instance.UseDatabaseNullSemantics = value
public bool UseDatabaseNullSemantics { get; set; }
public:
property bool UseDatabaseNullSemantics {
bool get ();
void set (bool value);
}
member UseDatabaseNullSemantics : bool with get, set
function get UseDatabaseNullSemantics () : boolean
function set UseDatabaseNullSemantics (value : boolean)
プロパティ値
型 : System.Boolean
データベースの null 比較動作が有効な場合は true、それ以外の場合は false。