var qryProjectsDueToday = from p in db.projects
where p.need_date = ????? (I want today''s date)
orderby p.project_id descending
select p;
it doesn't like anything I try to put in there! How do I simply put today's date in the query?
thx