Referencing the answer in this post I added /Views/Shared/DisplayTemplates and added a partial view called ShortDateTime.cshtml as shown below:
@model System
I guess you should declare the BirthDate property as nullable in model class
public DateTime? BirthDate{ get; set; }
and you must have declared as
public DateTime BirthDate{ get; set; }
this will expect a value every time.
if you set as nullable it will not expect a value.