Naming conventions for Data Access Layer especially in case of Stored Procedures - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:40:26Z http://stackoverflow.com/feeds/question/442581 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/442581/naming-conventions-for-data-access-layer-especially-in-case-of-stored-procedures 0 Naming conventions for Data Access Layer especially in case of Stored Procedures Tronex 2009-01-14T10:50:56Z 2009-01-15T23:33:18Z <p>Let's assume, we create a stored procedure that is supposed to retrieve customer details and that will be used in some sort of dashboard view. Since there are a couple of other stored procedures relevant for the dashboard as well, one might think about visually grouping the SPs by naming them accordingly:</p> <ul> <li>DASH_GetCustomerDetails</li> <li>DASH_...</li> </ul> <p>Now if you create a standard DAL with .NET 2.0, you will most certainly add a strongly typed dataset and add some table adapters. By default the TA for the SP above would be named like DASH_GetCustomerDetailsTableAdapter with the datatable being DASH_GetCustomerDetailsDataTable and so on.</p> <p>Typically, you'll have some sort of business logic above them all. It might be called something like Customer with a protected property that instantiates the table adapter and a method GetDetails maybe for finally retrieving details. Or you even make that method a property itself calling it Details, so that the presentation layer can just say something like cust.Details or whatever.</p> <p>However,... i am not satisfied with all that naming stuff. Could it be necessary to be able distinguishing between Stored Procedures working in the background, so that the naming should reflect that... is there any sort of best practice?</p> http://stackoverflow.com/questions/442581/naming-conventions-for-data-access-layer-especially-in-case-of-stored-procedures/442853#442853 1 Answer by Dan Vinton for Naming conventions for Data Access Layer especially in case of Stored Procedures Dan Vinton 2009-01-14T13:01:14Z 2009-01-14T13:01:14Z <p>I would be tempted to remove the DASH from the front of the procedures. In general procedure names should reflect what the procedure does, not who is using it.</p> <p>Consider the extreme case:</p> <ul> <li><code>get_all_customers</code></li> </ul> <p>vs</p> <ul> <li><code>get_all_customers_for_dashboard</code></li> <li><code>get_all_customers_for_invoice_background_job</code></li> <li><code>get_all_customers_for_ad_hoc_report</code></li> <li>...</li> </ul> <p>The fact that your stored procedures are used by a background part of your dashboard application <em>is nothing to do with the procedures themselves</em>, and naming them as such violates encapsulation.</p> <p>If you wrote another application that needed the same logical queries, would you write new procedures prefixed by APPNAME?</p>