How to Create DataContracts and Translators for Entity Framework Objects
Join the DZone community and get the full member experience.
Join For FreeThink 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!
Published at DZone with permission of Merrick Chaffer, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
SeaweedFS vs. JuiceFS Design and Features
-
DevOps in Legacy Systems
-
Alpha Testing Tutorial: A Comprehensive Guide With Best Practices
-
Core Knowledge-Based Learning: Tips for Programmers To Stay Up-To-Date With Technology and Learn Faster
Comments