Hi,
i would like to know to retrieve out the date and time from my database to show on the wcf test client and for eg, after choosing a certain date, how to do the coding in order for the events to show that's happening on the date i choose or after the date ? Please help me. Thank-you.
It's sth like this but still facing some error.
public List<EventEntity> GetCurrentUpComingEvents(string uid)
{
EventDBModelDataContext context = new EventDBModelDataContext();
var res = from e in context.EventEntities where e.eventDate == >= date select e;
return res.ToList();
}