Here's an example of the query I'm trying to convert to entity framework
select * from Teachers fm
where (select count(*) from General_Program
where Teacher_id = fm.Teacher_ID and Campus_Name = fm.Campus_Name) > 0
and Dept_Name = 'English'