I have following model corresponding to the database tables listed below.
A manager is an employee. An accountant also is an employee.
Just do:
return context.Employees.OfType<Accountant>().ToList()
This is however a really bad way to model employees.. if an accountant changes job, you need to kill and recreate that object..
See my answer on Inheritance vs enum properties in the domain model.