I am working with C# Winform and Entity Framework,
My question is, Is there a way to bind a TimeSpan property to DateTime control?
I have a DataGridView
which is DataBounded
to a entity framework DbSet
. DbSet
has a TimeSpan
property which I binded to a DateTime
control but displayed as Time
only. my Binding is modeled here: Entity Framework - (master detail) how to update Details which on a separate form from Master
Upon execution of the program, no error displayed on build but time is not displayed on the control as well as saving, time is not saved too. :(