根据 Microsoft 文档,当满足以下一个或多个条件时,
IsSoftDeleted
返回 true:
映射到配置值时,我得到
IsSoftDeleted
的空值。我已在表达式生成器中尝试了以下各项及其各自的结果:
[IsSoftDeleted] => null
Not([IsSoftDeleted]) => null
Switch([IsSoftDeleted], , "False", "True", "True", "False") => null (not matching "False" or "True" so defaulting to null)
Switch([IsSoftDeleted], "False", "False", "True", "True", "False") => False (not matching "False" or "True" so defaulting to "False")
Switch([IsSoftDeleted], "True", "False", "True", "True", "False") => True (not matching "False" or "True" so defaulting to "True")
我还尝试了前三个与实际布尔值(所以假,假,真,真,假等)所有相应的,不正确的响应。
看起来
IsSoftDeleted
没有按照我的设置要求进行响应。关于如何正确启用它有什么想法吗?
我检查了表达式生成器,但我总是得到
null
。
IFF(IsNull([IsSoftDeleted]), "未删除", "已删除")