Below is my problematic situation.
My SQL Server database has a table called reservation and contain data about
ReservationId, DriverId, ReservationType,
when a customer done reservation ,It added a row with reservationid, DriverId , ReservationType="Y" to the db.
I am able to take this data from db with pressing button.
but I need to get that reservation data continuously(if there have a new record) from db and shown that in real time in a list .
Is that possible using Asp.net MVC and Linq or can someone suggest a way to do that possible .