RequiredAttribute.AllowEmptyStrings 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示是否允许空字符串。
public:
property bool AllowEmptyStrings { bool get(); void set(bool value); };
public bool AllowEmptyStrings { get; set; }
member this.AllowEmptyStrings : bool with get, set
Public Property AllowEmptyStrings As Boolean
属性值
如果允许空字符串,则为 true
;否则为 false
。 默认值是 false
。
注解
将数据字段设置为 AllowEmptyStringstrue
时,动态数据不会执行验证,并将空字符串转换为 null
值。 然后,此值将传递给数据库。
如果数据库不允许 null
值,则会引发错误。 若要避免此错误,还必须将 设置为 ConvertEmptyStringToNullfalse
。