LINQ to SQL: Multiple / Single .dbml per project? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:46:06Z http://stackoverflow.com/feeds/question/337763 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project 4 LINQ to SQL: Multiple / Single .dbml per project? Dan Esparza 2008-12-03T16:29:53Z 2009-10-06T21:37:15Z <p>I've read Rick Strahl's article on <a href="http://www.west-wind.com/weblog/posts/246222.aspx" rel="nofollow">Linq to SQL DataContext Lifetime Management</a> hoping to find some answers on how I would manage my .dbml files since they are so closely related to DataContext. Unfortunately, Rick's article seems to be focused on <em>DataContext lifetime at runtime</em> though, and my question is concerned with how the .dbml's should be organized at <em>design time</em>. </p> <p>The general question of 'Best practices with .dbml's' <a href="http://stackoverflow.com/questions/33664/best-practices-for-managing-linq-to-sql-dbml-files">has been asked and answered here</a>, and the answers have focused on external tools to manage the .dbml. </p> <p>I'm asking a more focused question of <strong>when and why should you <em>not</em> have a single .dbml file in your LINQ to SQL based project</strong>? </p> http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project/337801#337801 2 Answer by Filip Ekberg for LINQ to SQL: Multiple / Single .dbml per project? Filip Ekberg 2008-12-03T16:38:52Z 2008-12-03T16:38:52Z <p>I'd say, you always just need 1 dbml-file PER database. If you have multiple connections to other databases, consider design or use seperate dbml-files. Either way, one is enough per database.</p> <p>This because the dbml mapps to your tables and why not just use one "data connector" / "data layer" for that, seems odd / weird design to use more than one.</p> <p>It's probably more controllable using only 1 aswell.</p> http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project/337807#337807 3 Answer by Guy for LINQ to SQL: Multiple / Single .dbml per project? Guy 2008-12-03T16:39:47Z 2008-12-03T16:39:47Z <p>In my opinion, you can split the .dmbl files so that each hold a subset of tables/procs from a DB according to function and relationship. I have not done this yet so this is just opinion.</p> <p>I have however created multiple .dbml files to assist with unit testing. If you work in an environment which restricts you to using stored procs in your production environment then you cannot use the table part of the .dbml (you can use the proc part though). So if you "unit test" (this is really integration testing) the DB layer of your code you can call the proc wrapper and then check the results by querying the tables through the .dbml interface. In cases like this I'll split the .dmbl file into just the tables that I want to query in my "unit test."</p> <p>Further info: I have 2 solutions that I build. One has unit tests and is never built on the build server. The other is built on the build server and deployed to test/production.</p> http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project/471455#471455 0 Answer by for LINQ to SQL: Multiple / Single .dbml per project? 2009-01-23T00:39:00Z 2009-01-23T00:39:00Z <p>The answer is tricky because it's what the situation requires. I try to logically separate each DBML into contexts (after all, the DBML provides the DataContext functionality). So if my app has a single context, then it doesn't make sense for me to have a separate DBML for each table. Context is king when creating your DBML files is what I say.</p> http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project/1238440#1238440 0 Answer by Umar Farooq Khawaja for LINQ to SQL: Multiple / Single .dbml per project? Umar Farooq Khawaja 2009-08-06T11:59:39Z 2009-08-06T11:59:39Z <p>Say you have a database:</p> <p>Database D contains tables A, B, C, X, Y, Z where</p> <ul> <li>Table A has a foreign key relationship with tables B and C</li> <li>Table X has a foreign key relationship with tables Y and Z</li> <li><em>Table X also has a foreign key relationship with table A</em></li> </ul> <p>Say you have 2 DBML files P and Q based on database D</p> <ul> <li>DBML File P contains entities A', B' and C' where A' is connected to B' and C' via associations.</li> <li>DBML File Q contains entities X', Y' and Z' where X' is connected to Y' and Z' via associations.</li> </ul> <p>AFAIK, there is no way for DBML files P and Q to contain an association between entities A' and X'. This is the single biggest problem with having multiple DBML files.</p> <p>To my mind, a DBML file reflects the data-model represented by the tables and constraints on those tables in a database. If some tables or constraints are missing from a set of DBML files, then the set of DBML files do not accurately reflect the underlying database.</p> <p>Going back to our example, if there was no relationship between tables A and X in database D, then one would be able to create 2 DBML files.</p> <p>Generically speaking, one can have multiple DBML files if each DBML file contains all entities and relationships that are connected. Note that the converse is not a problem, i.e., one can have a single DBML file containing multiple groups of entities that are not related to each other by any associations.</p> http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project/1238455#1238455 0 Answer by Umar Farooq Khawaja for LINQ to SQL: Multiple / Single .dbml per project? Umar Farooq Khawaja 2009-08-06T12:04:32Z 2009-08-06T12:04:32Z <p>Another thing to bear in mind is that LINQ uses the DataContext to track the identities of the instances of entities it creates. Therefore, an entity representing a row in a table created by one instance of the DataContext class is not the same as one created by another, even if all the properties are the same.</p> <p>When one has multiple DBML files, then by necessity, there will be multiple instances of DataContexts, one for each DBML file. Therefore, entities can't be joined or shared from one DataContext to another.</p> <p>This is applicable when an entity exists in both (or all) DBML files.</p> http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project/1504884#1504884 0 Answer by ashraf for LINQ to SQL: Multiple / Single .dbml per project? ashraf 2009-10-01T16:06:47Z 2009-10-06T21:37:15Z <p>Please note that LINQ2SQL is intended for simple and easy way to handle database relationship with objects.</p> <p>Do not break table relationship and units of work concepts by creating multiple .dbml files. </p> <p>If you ever need to create multiple .dbml files (which i don't recommend), then try to satisfy the following:- </p> <ol> <li>If you create multiple databases with no relationship between those database tables.</li> <li>If you want to use one of these .dbml just to handle stored procedures </li> <li>If you do not care about unit of work concept.</li> </ol> <p>If your database is too complex, then I would consider ORM such as NHibernate.</p>