Hello !
I'm trying to save a datetime value from vb.net to a sql server.
I'm using this code :
Dim dt As DateTime = DateTime.Now.ToString("dd/MM/yyyy HH:mm:ss")After I save this value to Database.
But on sql server management studio , I see that the field's value still has the milliseconds .
What can I do.
Thank you !