Best Practice for Subset of Business Object Fields Structure ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:14:47Z http://stackoverflow.com/feeds/question/508658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/508658/best-practice-for-subset-of-business-object-fields-structure 0 Best Practice for Subset of Business Object Fields Structure ? Element 2009-02-03T19:54:43Z 2009-02-03T20:17:48Z <p>If I have a business object with 50 fields, and I need to populate something like a drop down list or gridview with only 3 fields from the business object to allow quick browsing. </p> <p>Is it best practice to load the fully populated BO then just grab the few required fields in your presentation layer ? </p> <p>It seems inefficient to populate a collection of Bo's that size but the only other ways would seem to be to return partially populated BO's with just the fields you need for a particular UI which would be hard to manage if you have alot of similar UI requirements, or make a baseclass like MyBusinessObjectHeader that contains the fields then make MyBusinessObject inherit it and implement the rest of the fields but this would tie it your UI too much it seems.</p> <p>Whats the best practice for this type of situation ?</p> http://stackoverflow.com/questions/508658/best-practice-for-subset-of-business-object-fields-structure/508703#508703 0 Answer by Nathan for Best Practice for Subset of Business Object Fields Structure ? Nathan 2009-02-03T20:05:07Z 2009-02-03T20:05:07Z <p>There are a lot of frameworks out there that do this sort of o/r mapping you're talking about.</p> <p>You're trading a little more overhead for ease of use and robust configuration.</p> <p>See <a href="http://www.hibernate.org/" rel="nofollow">Hibernate</a> or <a href="http://www.hibernate.org/343.html" rel="nofollow">NHibernate</a> if you're using .net.</p> http://stackoverflow.com/questions/508658/best-practice-for-subset-of-business-object-fields-structure/508747#508747 2 Answer by Cade Roux for Best Practice for Subset of Business Object Fields Structure ? Cade Roux 2009-02-03T20:17:48Z 2009-02-03T20:17:48Z <p>I make a separate readonly list of readonly digest objects (or structs) that are lightweight and cannot be manipulated. The collection can be customized for whatever needs you might have as normal. Retrieval of a full object can be used by passing a "digest" object to a type conversion, or factory or constructor - whatever techniques you are using.</p> <p>Note that this is an optimization which only happens when a collection of full-blown objects is simply getting too slow. It can easily be created at that point. Generally such classes are not created until necessary.</p>