How can I pass date into MySQL Database using C# and ADO.net?

MySQL Database only accepts date with this format:

Code:
yyyy-mm-dd
or

Code:
yyyy/mm/dd

But, datasets format is:

Code:
m/dd/yyyy hh:mm:ss AM/PM
I do only needs date.

What must I do?