Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将 ignoreNull 和 ignoreDefault 一起设置是不可能的。是否可以设置忽略所有空值和布尔值?
不,这些是相互排斥的。您不需要同时设置这两个,因为一个属性只有 1 个默认值。对于引用类型,它是 null,对于值类型,它是一个值(例如,布尔值是 false)。您应该能够设置 IgnoreIfDefault 并且没问题。