I am making this call in my WCF service:
public User GetStudentRecord(string userName) { try { return new DashboardFacade().G
Maybe you need to disable lazyloading and proxycreation, like this:
db.LazyLoadingEnabled = false; db.ProxyCreationEnabled = false;
Doing this your wcf service should work.