How i make a good parse of a Datetime in C# for a MySQL Column?
I have an issue when i tried to put a date into a date row in MySQL resulting in this error: But my code is this: DateTime tomarIngreso = dateTimePicker_FechaDeIngreso_Agregar.Value; DateTime tomarPlazo = dateTimePicker_FechaPlazo_Agregar.Value; string plazoFormat = tomarPlazo.ToString("yyyy-MM-dd"); string ingresoFormat…