RequiredAttribute.AllowEmptyStrings 属性

定义

获取或设置一个值,该值指示是否允许空字符串。

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

适用于