May team has been doing some refactoring in order to right historical wrongs. We moved DataContracts and OperationContracts out of the BL layer and in to a separate assembly, we severed dependancies from the interface assembly to the BL objects and are now consuming the services via ChannelFactory instead of generated proxies.
Now we want to begin integrating EF in to our DAL, which supports the BL layer. Since the EF team is making big conceptual changes with each release (Not that it's a bad thing :)), I'm a little lost.
I want to use EF with POCOs and also make these POCOs the data contracts for the services. There are no updates going back to the DB. Only data coming in to the web server. My issue is that I see all sorts of solutions from different versions of EF, and I don't know what the current best practice is...
Can someone help me get my head around this? What is the current best practice? Are there any special attributes or methods I need to set on my POCOs in order to use them as data contracts?