How to write class methods that return collections of instances - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T17:25:10Zhttp://stackoverflow.com/feeds/question/557323http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/557323/how-to-write-class-methods-that-return-collections-of-instances3How to write class methods that return collections of instancesJon Smock2009-02-17T15:22:05Z2009-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<Book> 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#5573580Answer by Fabian Vilers for How to write class methods that return collections of instancesFabian Vilers2009-02-17T15:27:58Z2009-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#5573662Answer by marijne for How to write class methods that return collections of instancesmarijne2009-02-17T15:28:57Z2009-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#5573851Answer by rizzle for How to write class methods that return collections of instancesrizzle2009-02-17T15:32:29Z2009-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<Books> books = new List<books>();
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#5586741Answer by Robert Rossney for How to write class methods that return collections of instancesRobert Rossney2009-02-17T20:54:31Z2009-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<T>
{
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<Book></code> to retrieve the book from the database:</p>
<pre><code>public class Book
{
public static IAdapter<Book> 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<Book></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<Book></code>:</p>
<pre><code>public class DataTableBookAdapter : IAdapter<Book>
{
public DataTable Table { get; set; }
private List<Book> Books = new List<Book>();
Book Retrieve(int id)
{
Book b = Books.Where(x => x.ID = id).FirstOrDefault();
if (b != null)
{
return b;
}
BookRow r = Table.Find(id);
b = new Book();
b.ID = r.Field<int>("ID");
b.Title = r.Field<string>("Title");
b.AvailableForCheckout = r.Field<bool>("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<Book> TestBookAdapter : IAdapter<Book>
{
private List<Book> Books = new List<Book>();
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 => 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<Book></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<Book></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<T></code> and implement them in your adapter classes, and have <code>Book</code> call those methods at the appropriate time.</p>