I have a basic selection task to be carried out
var query = db.Candidate.Where(.....
but I want the where to be on another table called Tag
in sql it would be
select * from Candidate
join Tag on Tag.candidateId = Candidate.tagId and Tag.tagId = 7
Thus getting all Candidates with tag 7
Im trying to do this directly with a Where, is this possible or do I need to use Linq to SQL.