Abstracting Data Access Layer from Business Object - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:00:08Z http://stackoverflow.com/feeds/question/739078 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/739078/abstracting-data-access-layer-from-business-object 1 Abstracting Data Access Layer from Business Object Duncan 2009-04-10T22:34:35Z 2009-04-11T10:28:28Z <p>Hi</p> <p>It's nothing new to de-couple the data access code from your business objects, but I'm always on the look-out for the "best way" to achieve something.</p> <p>I have the following classes:</p> <p>Orange - this is my Business Object.</p> <p>OrangeList - this is a List of Oranges. </p> <p>The user would fetch Orange objects from the data store by calling OrangeList.Fetch(someCriteria). Therefore OrangeList has to have a reference to the Data Access Layer - so it has the property: IDataProvider MyDataProvider.</p> <p>This will work for me, but the problem is that we cannot fetch a single Orange by itself - we always have to go via OrangeList.</p> <p>Either that or both Orange and OrangeList would have to descend from some common object that would hold the DataProvider.</p> <p>Is this a problem, or is my approach WAY off the mark in the first place?</p> <p>Any hints/pointers are appreciated, thanks.</p> <p><strong><em>EDIT: In light of the discussion below, I checked out the Repository pattern.</em></strong></p> <p>However for my project, I think it is a good idea to separate still further the Repository from the DAL. </p> <p>SO.... The Repository is how I GET Oranges, and SAVE Oranges, but still doesn't know HOW. I delegate that to the IDataProvider, which could be a number of those listed in the diagram.</p> <p>To clarify - Orange does NOT know how to fetch/update itself, right? It's a PURE business object - and is that the point?</p> <p><img src="http://img22.imageshack.us/img22/2460/repositorya.jpg" alt="alt text" /></p> <p>In case you're wondering, my "LegacyDataProvider" is to support an OLD system, which accesses a file-based Database (FoxPro, eek) - but this lets me wrap this up and keep it at arms-length from my new code.</p> <p>In terms of .NET assembly construction, to prevent circular references it looks like I'm gonna have a Repository.DLL [OrangeRepo], a DataProviderInterface.DLL [IDataProvider], and a BusinessObjects.dll [Orange]. All good?</p> <p>Have I got the idea of the repository then? </p> http://stackoverflow.com/questions/739078/abstracting-data-access-layer-from-business-object/739087#739087 2 Answer by Sebastian Sedlak for Abstracting Data Access Layer from Business Object Sebastian Sedlak 2009-04-10T22:40:27Z 2009-04-10T22:40:27Z <p>I suggest the <a href="http://martinfowler.com/eaaCatalog/repository.html" rel="nofollow">Repository Pattern</a></p> http://stackoverflow.com/questions/739078/abstracting-data-access-layer-from-business-object/739091#739091 1 Answer by chaos for Abstracting Data Access Layer from Business Object chaos 2009-04-10T22:44:15Z 2009-04-10T22:44:15Z <p>I would (and do) compose all these things off of a master API object (OrangeCart?) that also composes an interface object for the data access layer. Your Oranges and OrangeLists know that they belong to the OrangeCart and to talk to it for DAL operations.</p> http://stackoverflow.com/questions/739078/abstracting-data-access-layer-from-business-object/739137#739137 0 Answer by le dorfier for Abstracting Data Access Layer from Business Object le dorfier 2009-04-10T23:18:01Z 2009-04-10T23:29:37Z <p>Rather than OrangeList(someCriteria), I'd have Oranges.Criteria1List, Oranges.Criteria2List. For a singleton, I'd have Oranges.GetItem(orangeId).</p> <p>Doing it your way, the BusinessObject ends up needing to think in logical data design terms rather than conceptual terms.</p> <p>(Repository implementations cause me the same discomfort - too often all they are used for is to put a thin-abstraction thick-code layer over the tables. I don't like the BL to ever be required to know about database implementation details like data types and sizes. Too often it's useful to decouple these kinds of dependencies.)</p>