Can Date属性是否允许空值?

时间:2014-07-29 15:59:11

标签: asp.net-mvc vb.net entity-framework

我为我的MVC项目创建了一个模型文件,其中包含以下内容:

Public Class Player

    Public Property FirstName As String
    Public Property LastName As String
    Public Property GoesBy As String
    Public Property Birthdate As Date

End Class

我没有将Birthdate字段标记为必填字段,但它不接受空值。如何添加验证或其他内容以允许空值?或者这是不可能的,我只需插入1900-01-01或类似的东西?

1 个答案:

答案 0 :(得分:2)

只需将您的媒体资源Public Property Birthdate As Date设为nullable,如下所示:

Public Property Birthdate As Nullable(Of Date)

只需使您的数据库字段接受Birthdate为可空,以便它也可以接受空值。