Configurable Table Prefixes with a .Net OR/M? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T22:13:34Zhttp://stackoverflow.com/feeds/question/11740http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11740/configurable-table-prefixes-with-a-net-or-m2Configurable Table Prefixes with a .Net OR/M?Jacob Proffitt2008-08-14T22:32:58Z2008-08-28T14:49:41Z
<p>In a web application like wiki or forums or blogging software, it is often useful to store your data in a relational database. Since many hosting companies offer a single database with their hosting plans (with additional databases costing extra) it is very useful for your users when your database objects (tables, views, constraints, and stored procedures) have a common prefix. It is typical for applications aware of database scarcity to have a hard-coded table prefix. I want more, however. Specifically, I'd like to have a table prefix that users can designate—say in the web.config file (with an appropriate default, of course).</p>
<p>Since I hate coding <a href="http://en.wikipedia.org/wiki/Create%2C_read%2C_update_and_delete" rel="nofollow">CRUD</a> operations by hand, I prefer to work through a competent OR/M and have used (and enjoyed) LINQ to SQL, Subsonic, and ADO.Net. I'm having some thrash in a new project, however, when it comes to putting a table prefix in a user's web.config file. Are there any .Net-based OR/M products that can handle this scenario elegantly?</p>
<p>The best I have been able to come up with so far is using LINQ to SQL with an external mapping file that I'd have to update somehow based on an as-yet hypothetical web.config setting.</p>
<p>Anyone have a better solution? I tried to make it happen in Entity Framework, but that turned into a mess quickly. (Due to my unfamiliarity with EF? Possibly.) How about SubSonic? Does it have an option to apply a table prefix besides at code generation time?</p>
http://stackoverflow.com/questions/11740/configurable-table-prefixes-with-a-net-or-m/11757#117570Answer by Andrew Peters for Configurable Table Prefixes with a .Net OR/M?Andrew Peters2008-08-14T23:04:50Z2008-08-14T23:04:50Z<p><a href="http://www.mindscape.co.nz/products/LightSpeed/default.aspx" rel="nofollow" title="excanvas">LightSpeed</a> allows you to specify an <em>INamingStrategy</em> that lets you resolve table names dynamically at runtime.</p>
http://stackoverflow.com/questions/11740/configurable-table-prefixes-with-a-net-or-m/12089#120891Answer by Keith for Configurable Table Prefixes with a .Net OR/M?Keith2008-08-15T08:56:02Z2008-08-15T08:56:02Z<p>Rather than use table prefixes instead have an application user that belongs to a <code>scheme</code> (in MS Sql 2005 or above).</p>
<p>This means that instead of:</p>
<pre><code>select * from dbo.clientAProduct
select * from dbo.clientBroduct
</code></pre>
<p>You have:</p>
<pre><code>select * from clientA.Product
select * from clientB.Product
</code></pre>
http://stackoverflow.com/questions/11740/configurable-table-prefixes-with-a-net-or-m/12463#124630Answer by Jacob Proffitt for Configurable Table Prefixes with a .Net OR/M?Jacob Proffitt2008-08-15T16:44:12Z2008-08-15T16:44:12Z<p>@Andrew LightSpeed looks good and I <strong>really</strong> like having an <em>INamingStrategy</em> for tables. It looks like the Mindscape folks are doing some interesting work. Since the project I want this for is intended to be open source some day, it's not a fit for the exact situation. It <strong>is</strong> something to keep in mind for business dev, though.</p>
<p>@Keith That seems like a delay of the issue rather than a solution. It pushes the burden onto the user to create the scheme and get the connection string right (ugh), <strong>or</strong> it requires an OR/M that can be both scheme-aware and pull the required scheme from the config file. I admit that I haven't worked much with schemes, however, so that may be more viable than it seems on its face.</p>
http://stackoverflow.com/questions/11740/configurable-table-prefixes-with-a-net-or-m/32476#324760Answer by Jacob Proffitt for Configurable Table Prefixes with a .Net OR/M?Jacob Proffitt2008-08-28T14:49:41Z2008-08-28T14:49:41Z<p>I've now researched what it takes to do this in both Entity Framework and LINQ to SQL and <a href="http://theruntime.com/blogs/jacob/archive/2008/08/27/changing-table-names-in-an-orm.aspx" rel="nofollow">documented the steps required in each</a>. It's much longer than answers here tend to be so I'll be content with a link to the answer rather than duplicate it here. It's relatively involved for each, but the LINQ to SQL is the more flexible solution and also the easiest to implment.</p>