How should I name database wrapper object?
问题 For my CMS application I'm writing a DLL that I will include into my projects. That DLL will include functionality like retrieving all news for a specific project. For instance, my database contains a table called News. By using the Entity Framework 4 I have a automatic generated class called News . I do not want my DLL methods return this object rather than a wrapper class, that only contains properties. How should I name this wrapper class? For now I've always appended the word "Container",