Quick question about a naming convention for a C# CMS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T15:24:05Z http://stackoverflow.com/feeds/question/395526 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms 1 Quick question about a naming convention for a C# CMS Chance 2008-12-27T22:34:29Z 2009-01-26T17:21:52Z <p>I am building a CMS and the naming convention for classes has been debated between the other developer involved and myself. The problem arises specifically with "Page", as it is a public class available in a typical library.</p> <p>A natural response would be to call it MVCMSPage (where MVCMS is the to-be name of the cms) or to rely on referencing the class through the dll (can't think of the term atm..) but both seem to have a hint of codesmell to them.</p> <p>What would you advise? </p> <p>Thanks</p> http://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms/395545#395545 4 Answer by Dan Herbert for Quick question about a naming convention for a C# CMS Dan Herbert 2008-12-27T22:52:51Z 2008-12-28T16:56:36Z <p>I'd go with something other than '<code>Page</code>'. The '<code>Page</code>' class that is built into .NET is a very generic class that is commonly known as part of ASP.NET. You could easily confuse other developers (or even yourself, a few months down the road if you don't look at it for a while).</p> <p>I usually go with a naming convention such as:</p> <pre><code>ApplicationName + "Page" </code></pre> <p>I also like to follow the MS .NET naming guidelines of only capitalizing the first letter of an acronym longer than 2 characters. Since '<code>MVCMS</code>' can be confused for the 'MVC' architecture style if read incorrectly, I wouldn't use '<code>MvcmsPage</code>' or '<code>MVCmsPage</code>', I'd call it something like this:</p> <pre><code>MvCmsPage </code></pre> <p>This is descriptive and fairly easy to read and understand.</p> <p>Of course it's really up to you. Mainly it's a matter of preference. Just don't use '<code>Page</code>' as it will make some developers angry (such as myself).</p> http://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms/395558#395558 3 Answer by tvanfosson for Quick question about a naming convention for a C# CMS tvanfosson 2008-12-27T23:03:15Z 2008-12-27T23:03:15Z <p>I think the term you were looking for is <code>namespace</code>.</p> <p>I don't think I would rely on namespace differentiation for such a fundamental class in the System.Web space. If you were writing a console-based notification mechanism then it might be ok, but since you're working in the web arena, I'd avoid it. My vote would be to use the namespace as the main differentiator and name it something simple, like <code>ContentPage</code> so you would have something like <code>MvcCms.Web.ContentPage</code> as the full name of the class.</p> <p>If you do it this way you can import both your namespace and <code>System.Web</code> and still be able to differentiate the classes AND you have a short name that makes sense and isn't cumbersome to use or reference (when speaking about it).</p> http://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms/395611#395611 1 Answer by Robert C. Barth for Quick question about a naming convention for a C# CMS Robert C. Barth 2008-12-28T00:03:33Z 2008-12-28T00:03:33Z <p>To me, since you're developing a CMS, the object at the root is the Content. So either MvCmsContent, CmsContent, or just Content would seem fine to me. Isn't naming always the hardest part of a project?</p> http://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms/480517#480517 1 Answer by Aaron for Quick question about a naming convention for a C# CMS Aaron 2009-01-26T17:01:59Z 2009-01-26T17:01:59Z <p>We had a similar issue and just went with CMSPage. It's a bit less cumbersome than the MVCMSPage, but still obviously CMS and you can further extend that class for multiple systems in the future if need be.</p> http://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms/480592#480592 0 Answer by Cristian Libardo for Quick question about a naming convention for a C# CMS Cristian Libardo 2009-01-26T17:21:52Z 2009-01-26T17:21:52Z <p>I'm thinking the "page" you're referring as the application's equivalent of a database record. As others are saying this it's a rather loaded term. Here's a few random ideas:</p> <ul> <li>Node </li> <li>View</li> <li>PageRecord</li> <li>CmsPage</li> <li>WebDocument</li> <li>ContentPage</li> </ul> <p>Your choice should try to convey the essence of the object type. I'd avoid putting the product name into the class name. I prefer namespaces for that.</p>