2
Answers

How To Insert the value of Datetimepicker in SQL Database

stevan

stevan

11y
5.5k
1

Hello, I'm having a problem with inserting date from datetimepicker into sql. The thing is - I don't know how to do it.

I'm using WPF with LINQ to sql database connection.

This is how it should work :

In the button Insert I want to put name, surname and date of birth into sql database.

So I have

Person p=new Person();

p.Name=nameTextBox.Text.Trim();

p.surName=surNameTextBox.Text.Trim();

p.dateOfBirth= // I don't know how

Thanks in advance.

Answers (2)