public List<EventEntity> GetCurrentUpComingEventsByEstate(string EstName)
{
EventDBModelDataContext context = new EventDBModelDataContext();
var res = from e in context.EventEntities
where e.eventDate >= DateTime.Now _estatename(?)
select e;
return res.ToList();
}
Hi experts,
How do i declare the estatename part so that when i test the program in web browser, i will only get the details of the estatename that i choose based on the date and the estatename?