how to fill dropdown start date and end date using two column date time table in mvc.
i want to fill dropdown "from date" that contain periode_start and periode_end at the same time
CREATE TABLE [dbo].[maintenance_truck_dedicated](
[title_id] [int] IDENTITY(1,1) NOT NULL,
[title] [varchar](50) NULL,
[vehicle_type_id] [int] NULL,
[periode_start] [datetime] NULL,
[periode_end] [datetime] NULL,
[created_date] [datetime] NULL,
[last_update] [datetime] NULL,
[created_by] [int] NULL,
[last_update_by] [int] NULL,
[description] [text] NULL,
CONSTRAINT [PK_maintain_truck_dedicated] PRIMARY KEY CLUSTERED
(
[title_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO