I followed the post here to set up my WCF Data Service with Entity Framework 6.0: http://blogs.msdn.com/b/astoriateam/archive/2013/10/02/using-wcf-data-services-5-6-0-with-entity-framework-6.aspx
After converting the DataService to EntityFrameworkDataService, I'm not able to compile my project and this is because my call to CurrentDataSource does not translate all the methods on my Context. With regular DataService I was able to call CurrentDataSource.getEmployees() complex type and everything worked fine. However, with the new EntityFrameworkDataService getEmployees() is no longer available. What am I missing here?