null: If True, Django will store empty values as NULL in the database. Default is False. 如果为True,空值将会被存储为NULL,默认为False. blank: If True, the field is allowed to be blank. Default is False. 如果为True,字段允许为空,默认不允许.…
一.string.Empty 和 "" 原文1 原文2 1.Empty是string类中的一个静态的只读字段,它是这样定义的: // Represents the empty string. This field is read-only. public static readonly string Empty; 也就是说 string.Empty 的内部实现是等于…