DbContextConfiguration.UseDatabaseNullSemantics 属性
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
获取或设置一个值,该值指示当比较两个操作数,而它们都可能为 null 时,是否展示数据库 null 语义。 默认值为 false。 例如:如果 UseDatabaseNullSemantics 为 true,则 (operand1 == operand2) 将转换为 (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。