I am working on a name record application and the information is stored in a SQLite database. All columns in the database are TEXT types, except for the date of birth column
You just need to cast it to DateTime
if ((DateTime)(resultsGrid.CurrentRow.Cells["DateOfBirth"].Value) == DateTime.MinValue) { // Set cell value to "" }