public static bool IsDate(this IBasicObjectExtensionPropertyInfo property)
 {
     return(DateTimeTypes.Contains(property.Type) &&
            property.GetDataTypeOrNull() == DataType.Date);
 }