I\'m trying to create a \'time(7)\' column in a table with Entity Framework Code First. This is my Entity:
public class ShiftDetail { public long Id { ge
If you want to use Time type in database you will have to use TimeSpan with 24 hour cycle in your application. DateTime is not representation of time.
Time
TimeSpan
DateTime