Can LINQ to SQL generated objects be decoupled? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:43:33Zhttp://stackoverflow.com/feeds/question/222895http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled9Can LINQ to SQL generated objects be decoupled?swilliams2008-10-21T18:17:28Z2008-12-12T21:05:26Z
<p>I like LINQ to SQL, but it seems like the classes it generates are tightly coupled to the database they are stored in, which seems like a Bad Thing. </p>
<p>For example, using ye olde Northwind database, if I create the dbml with the Products table, a <code>Product</code> class is generated. I can use this class in any other tier, which is all well and good, but if I decide I'd rather use plain old ADO.NET (or switch databases), I'll have to recreate the <code>Product</code> class, along with every other "model."</p>
<p>Is there a way around this? Or to create your object models separately, and then have the tables mapped to them? I've played around with the various mapping classes provided, but haven't found a satisfactory answer yet.</p>
http://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled/222919#2229191Answer by Marcus King for Can LINQ to SQL generated objects be decoupled?Marcus King2008-10-21T18:24:27Z2008-10-21T18:24:27Z<p>Scott Hanselman did a screen talking about asp.net DynamicData where he used Linq To Sql classes. Although he wasn't addressing the particular issue I think the general concept would still work. His approach was to create a separate <strong>partial</strong> class that had the same name as the class, <code>Product</code> in your case, that was generated by the dbml. Then you should always have a <code>Product</code> class that exists outside of what LINQ generates and just "extends" what it does.</p>
http://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled/223003#2230033Answer by Seth Petry-Johnson for Can LINQ to SQL generated objects be decoupled?Seth Petry-Johnson2008-10-21T18:49:24Z2008-10-21T18:49:24Z<p>My team fought with this issue recently. I really wanted to maintain "persistence ignorance", meaning that domain objects could be created as plain old C# objects, without being forced to inherit from a certain base class or clutter up the class with a bunch of attributes. Like you said, we wanted to be able to modify the persistence layer independently of the business model.</p>
<p>In the end, we decided that LINQ isn't the way to go if you want persistence ignorance. We end up writing way too much mapping code to convert between the LINQ layer and our business layer. When we started writing a bunch of reflection-based code to try and do these mappings automatically we realized we were sliding down the rabbit hole, with little to show for it.</p>
<p>If persistence ignorance is important to you, you might be better served with a full-fledged ORM like NHIbernate.</p>
http://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled/223019#2230192Answer by Justice for Can LINQ to SQL generated objects be decoupled?Justice2008-10-21T18:52:18Z2008-10-21T18:52:18Z<p>Linq to SQL (or EF) is <em>not</em> about persistence-ignorance. It is about an object view of data.</p>
<p>NHibernate is the persistence-ignorance ORM you may be looking for.</p>
http://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled/223792#2237920Answer by DamienG for Can LINQ to SQL generated objects be decoupled?DamienG2008-10-21T22:33:18Z2008-10-21T22:33:18Z<p>Just copy the generated code into your own classes and switch off the code generation. The magic is in the attributes not anything else.</p>
<p>Alternatively you can write your own plain CLR objects without the attributes and use an external XML mapping file to describe the relationship between the objects and the database. More information can be found in the LINQ to SQL documentation on MSDN.</p>
http://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled/223825#2238252Answer by Garry Shutler for Can LINQ to SQL generated objects be decoupled?Garry Shutler2008-10-21T22:45:13Z2008-11-06T10:48:51Z<p>I've recently achieved this by creating the POCOs myself and manually creating a XML mapping file for the database. It requires a bit of manual work but it gives the desired effect.</p>
<p>Here's a <a href="http://www.sidarok.com/web/blog/content/2008/10/14/achieving-poco-s-in-linq-to-sql.html" rel="nofollow">blog post I found useful</a> to get you started. </p>
http://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled/229905#2299056Answer by Zachary Yates for Can LINQ to SQL generated objects be decoupled?Zachary Yates2008-10-23T14:19:51Z2008-10-23T14:19:51Z<p>All these answers and no links! Maybe I can help:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb425822.aspx#linqtosql_topic3" rel="nofollow">The attributes thing that damieng mentioned</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb546176.aspx" rel="nofollow">The partial class thing that Marcus King mentioned</a></p>
<p>I have languished through this difficulty a couple of times, what I ended up doing on my last project was using interfaces as the contract that's shared between all of the different projects in the solution, and having the partial classes implement it.</p>
<pre><code>[Table(Name="Products")]
public partial class Product: IProduct { }
</code></pre>
<p>And yes, unfortunately it took some reflection magic to make it work for the POCO implementation.</p>
<p>In the end, if you are truly concerned about it, I'd go with NHibernate (I don't really like it either), which does exactly what Garry Shulter seems to be describing.</p>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/222895/can-linq-to-sql-generated-objects-be-decoupled/364138#3641382Answer by swilliams for Can LINQ to SQL generated objects be decoupled?swilliams2008-12-12T21:05:26Z2008-12-12T21:05:26Z<p>Oh hey, I think I found a solution to this while watching <a href="http://www.asp.net/learn/mvc-videos/#MVCStorefrontStarterKit" rel="nofollow">Rob Conery's screencasts on ASP.NET MVC</a>. The trick is to <code>select</code> into an object in your LINQ to SQL query.</p>
<pre><code>public IQueryable<LinqExample.Core.Person> GetAll() {
var people = from pe in this.db.Persons
select new Person {
Id = pe.id,
FirstName = pe.fname,
LastName = pe.lname,
Reports = this.GetReports(pe.id)
};
return people;
}
</code></pre>
<p>This let's you define a <code>Person</code> class elsewhere in your code. <a href="http://www.sogeti-phoenix.com/Blogs/post/2008/12/LINQ-To-SQL-and-Tight-Coupling-Part-4.aspx" rel="nofollow">I blogged about it</a> more in depth. </p>