DateTime data insert to sql server

Hi @Anil_G @RajKumar_DC

Thanks All :slight_smile: :+1:

Finally we found the soluation to import Null data with specificed variable types in sql server.

If ( String.IsNullOrEmpty(Exl_Created_At), New Nullable(Of Date), System.Convert.ToDateTime(Exl_Created_At))

Variable Type : Nullable.System.Datetime

Thanks
Shyam

1 Like