I try to make search query in Entity framework. I have table Project with 'Id', 'ProjectName', 'Description' and "modificationdate" etc. I want to perform search on 'ProjecName', 'Description' and "modificationdate". I successfully perform search on 'ProjectName' & 'Description' but i don't know how perform search by date
var found = from n in context.Project
where n.projectName.Contains(SearchKey) ||
n.description.Contains(SearchKey)
select n;