例如 字段 DateTime 类型 或 xxxxID的 默认是 not null
有好的方法设置为 可空吗 (除了 ?方法)
Nullable 与? 是一样的效果
可为空的值类型必须使用 Nullable<>或 ? 申明.
public DateTime? CreateDate{get;set;}
这样不是很好吗?不明白你到底要干什么