How to write class methods that return collections of instances - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T17:25:10Z http://stackoverflow.com/feeds/question/557323 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/557323/how-to-write-class-methods-that-return-collections-of-instances 3 How to write class methods that return collections of instances Jon Smock 2009-02-17T15:22:05Z 2009-02-17T20:54:31Z <p>I'm struggling to define a class method that populates and returns a collection of instances. The issue I don't know how to get around is that I have private attributes to populate.</p> <p>Let's use the example of a Book class. I don't want the code to directly set (say) the availability of a book. I want the code to have to use a CheckOut method on a Book instance. So we have something like:</p> <pre><code>public class Book { private int ID; private bool pAvailableForCheckout; public string Title { get; set; } public bool AvailableForCheckout { get { return pAvailableForCheckout } } // instance methods public Book(int BookID) { // Load book from DB by ID } public CheckOut() { // perform everything involved with checking a book out } // .. other methods like saving a book, checking out books etc. // class method public static List&lt;Book&gt; FindAll() { // load Dataset of books // foreach record in DB, use the Book(int BookID) constructor and add to List // return list of books } } </code></pre> <p>So, I can do use this in my code:</p> <pre><code>foreach(Book curBook in Book.FindAll()) { /* do something with book */ } </code></pre> <p>The problem with the above implementation is that I have to use N+1 hits to the database to load all the books instead of just 1 query. How do I get around this?</p> <p>I'm sure this is programming 101, but I needed to ask.</p> http://stackoverflow.com/questions/557323/how-to-write-class-methods-that-return-collections-of-instances/557358#557358 0 Answer by Fabian Vilers for How to write class methods that return collections of instances Fabian Vilers 2009-02-17T15:27:58Z 2009-02-17T15:27:58Z <p>Why don't you check the availability of the book at database side using a SQL where statement?</p> http://stackoverflow.com/questions/557323/how-to-write-class-methods-that-return-collections-of-instances/557366#557366 2 Answer by marijne for How to write class methods that return collections of instances marijne 2009-02-17T15:28:57Z 2009-02-17T15:28:57Z <p>You could create a protected constructor which populates the private properties directly.</p> http://stackoverflow.com/questions/557323/how-to-write-class-methods-that-return-collections-of-instances/557385#557385 1 Answer by rizzle for How to write class methods that return collections of instances rizzle 2009-02-17T15:32:29Z 2009-02-17T15:32:29Z <p>The foreach should be iterating over a list of already instantiated objects, they won't need to connect to the DB. </p> <p>You need to create a constructor that accepts the properties of your book object so that you can instantiate a book from an existing set of data rather than a new hit to the DB.</p> <p>so:</p> <p>Constructor:</p> <pre><code>public book (String title, String avail) {Title=title...} </code></pre> <p>And in the method</p> <pre><code>public static void FindAll() { List&lt;Books&gt; books = new List&lt;books&gt;(); using (Sqlconnection conn = new sqlconnection(connstring)) using (sqlcommand cmd = new SqlCommand("select title, available from book ", conn) { SqlDatareader dr = cmd.executereader() while (dr.read()) { books.add(new Book(dr["title"], dr["avail"]) } } foreach(Book curBook in Book.FindAll()) { /* do something with book */ } } </code></pre> http://stackoverflow.com/questions/557323/how-to-write-class-methods-that-return-collections-of-instances/558674#558674 1 Answer by Robert Rossney for How to write class methods that return collections of instances Robert Rossney 2009-02-17T20:54:31Z 2009-02-17T20:54:31Z <p>For an example somewhat extreme in its ideological purity:</p> <p>First, an interface for classes that can retrieve objects of type T from the database given their ID:</p> <pre><code>interface IAdapter&lt;T&gt; { T Retrieve(int id); } </code></pre> <p>Now, the <code>Book</code> class, which no longer exposes a public constructor, but instead a static method that uses an <code>IAdapter&lt;Book&gt;</code> to retrieve the book from the database:</p> <pre><code>public class Book { public static IAdapter&lt;Book&gt; Adapter { get; set; } public static Book Create(int id) { return Adapter.Retrieve(id); } // constructor is internal so that the Adapter can create Book objects internal Book() { } public int ID { get; internal set; } public string Title { get; internal set; } public bool AvailableForCheckout { get; internal set; } } </code></pre> <p>You have to write the class implementing <code>IAdapter&lt;Book&gt;</code> yourself, and assign <code>Book.Adapter</code> to an instance of it so that <code>Book.Create()</code> will be able to pull things from the database.</p> <p>I say "ideological purity" because this design enforces a pretty rigid separation of concerns: there's nothing in the <code>Book</code> class that knows how to talk to the database - or even that there <em>is</em> a database. </p> <p>For instance, here's one possible implementation of <code>IAdapter&lt;Book&gt;</code>:</p> <pre><code>public class DataTableBookAdapter : IAdapter&lt;Book&gt; { public DataTable Table { get; set; } private List&lt;Book&gt; Books = new List&lt;Book&gt;(); Book Retrieve(int id) { Book b = Books.Where(x =&gt; x.ID = id).FirstOrDefault(); if (b != null) { return b; } BookRow r = Table.Find(id); b = new Book(); b.ID = r.Field&lt;int&gt;("ID"); b.Title = r.Field&lt;string&gt;("Title"); b.AvailableForCheckout = r.Field&lt;bool&gt;("AvailableForCheckout"); return b; } } </code></pre> <p>Some other class is responsible for creating and populating the <code>DataTable</code> that this class uses. You could write a different implementation that uses a <code>SqlConnection</code> to talk to the database directly.</p> <p>You can even write this:</p> <pre><code>public IAdapter&lt;Book&gt; TestBookAdapter : IAdapter&lt;Book&gt; { private List&lt;Book&gt; Books = new List&lt;Book&gt;(); public TestBookAdapter() { Books.Add(new Book { ID=1, Title="Test data", AvailableForCheckout=false }; Books.Add(new Book { ID=2, Title="Test data", AvailableForCheckout=true }; } Book Retrieve(int id) { return Books.Where(x =&gt; x.ID == id); } } </code></pre> <p>This implementation doesn't use a database at all - you'd use this when writing unit tests for the <code>Book</code> class.</p> <p>Note that both of these classes maintain a private <code>List&lt;Book&gt;</code> property. This guarantees that every time you call <code>Book.Create()</code> with a given ID, you get back the same <code>Book</code> instance. There's an argument to be made for making this a feature of the <code>Book</code> class instead - you'd make a static private <code>List&lt;Book&gt;</code> property in <code>Book</code> and write logic to make the <code>Create</code> method maintain it.</p> <p>You use the same approach for pushing data back to the database - add <code>Update</code>, <code>Delete</code>, and <code>Insert</code> methods to <code>IAdapter&lt;T&gt;</code> and implement them in your adapter classes, and have <code>Book</code> call those methods at the appropriate time.</p>