Quick question about a naming convention for a C# CMS - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T15:24:05Zhttp://stackoverflow.com/feeds/question/395526http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/395526/quick-question-about-a-naming-convention-for-a-c-cms1Quick question about a naming convention for a C# CMSChance2008-12-27T22:34:29Z2009-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#3955454Answer by Dan Herbert for Quick question about a naming convention for a C# CMSDan Herbert2008-12-27T22:52:51Z2008-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#3955583Answer by tvanfosson for Quick question about a naming convention for a C# CMStvanfosson2008-12-27T23:03:15Z2008-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#3956111Answer by Robert C. Barth for Quick question about a naming convention for a C# CMSRobert C. Barth2008-12-28T00:03:33Z2008-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#4805171Answer by Aaron for Quick question about a naming convention for a C# CMSAaron2009-01-26T17:01:59Z2009-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#4805920Answer by Cristian Libardo for Quick question about a naming convention for a C# CMSCristian Libardo2009-01-26T17:21:52Z2009-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>