How to Create DataContracts and Translators for Entity Framework Objects
Think I've just come up with a fool proof method for creating datacontracts and associated translator logic from Entity Framework generated objects
Creating datacontracts
1. Grab the class definition from the xxxModel.cs file in xxxx.DataContracts.csproj project
2. Paste into a new file in the xxx.DataContracts namespace
3. Use Resharper to clean up the code (Ctrl +E , Ctrl + C), choose full format option
4. Suspend off Resharper (Tools, options ,Resharper)
5. Grab the primitives section and change privates to publics
6. Replace ; with { get; set; }
7. That's it, you now have your matching datacontract with no typos and property names matching the auto generated ones in the xxxModel.cs file.
Creating translators (little bit more involved)
1. Turn resharper back on
2. Use the File Structure window
3. Stick this in Excel and do some manipulation (ask me if you're not sure how to do this)
4. Paste this back into your C# file, and do a regex replace of \t with nothing
5. That's it, translator code written!
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





