<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: The Books have Arrived</title>
	<atom:link href="http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/feed/" rel="self" type="application/rss+xml" />
	<link>http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/</link>
	<description>My Experiences with Software Development</description>
	<pubDate>Sun, 20 Jul 2008 15:37:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Brennan Stehling</title>
		<link>http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-29489</link>
		<dc:creator>Brennan Stehling</dc:creator>
		<pubDate>Thu, 21 Feb 2008 16:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-29489</guid>
		<description>Joseph,

I really appreciate your feedback. I am really glad that you are getting a lot of use out of it. There is so much more that I wanted to put into the book that I am now preparing to cover on my new blog that I am writing as a companion to the book. It will also cover other topics like using JavaScript with ASP.NET.

http://blog.smallsharptools.com/

From the book I have pulled out the DomainObject and related classes into a lightweight project called SmallSharpTools.DataAccess. It is meant as a simple drop-in solution for quick binding of database columns to your business objects. It has additional features that I added after I completed the book. More additions are planned, such as support for a compound primary key.

http://svn.offwhite.net/trac/SmallSharpTools.DataAccess

If you ever have any questions I am happy to answer them. It will really help me with deciding what I should write about in the blog.

Thanks again,

Brennan</description>
		<content:encoded><![CDATA[<p>Joseph,</p>
<p>I really appreciate your feedback. I am really glad that you are getting a lot of use out of it. There is so much more that I wanted to put into the book that I am now preparing to cover on my new blog that I am writing as a companion to the book. It will also cover other topics like using JavaScript with ASP.NET.</p>
<p><a href="http://blog.smallsharptools.com/" rel="nofollow">http://blog.smallsharptools.com/</a></p>
<p>From the book I have pulled out the DomainObject and related classes into a lightweight project called SmallSharpTools.DataAccess. It is meant as a simple drop-in solution for quick binding of database columns to your business objects. It has additional features that I added after I completed the book. More additions are planned, such as support for a compound primary key.</p>
<p><a href="http://svn.offwhite.net/trac/SmallSharpTools.DataAccess" rel="nofollow">http://svn.offwhite.net/trac/SmallSharpTools.DataAccess</a></p>
<p>If you ever have any questions I am happy to answer them. It will really help me with deciding what I should write about in the blog.</p>
<p>Thanks again,</p>
<p>Brennan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Van valen</title>
		<link>http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-29487</link>
		<dc:creator>Joseph Van valen</dc:creator>
		<pubDate>Thu, 21 Feb 2008 16:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-29487</guid>
		<description>Hi Brennan,

Your book has only recently started showing up on the shelves of my local bookstores, or I would have gotten it sooner. I purchased your book and have been going through it for the last few days. There are lots of great ideas in here that I hope to put into practice at some point. 

Right off the bat, I enjoyed the discussion of the development environment. In particular setting up Virtual PC's as a development environment. Out of curiosity, what machine resources do you typically devote to this (virtual disk sizes, ram) for development?  I tried setting up Virtual PC using Windows Server 2003 in a virutal machine with Visual Studio, Sql Server, and Team System Server Workstation, but it is very slow - I suspect I need to use a larger virtual disk.

I'm still set in the ASP.NET 1.1 way of doing things (i.e. Databind() calls instead of DataObjects and DataSource controls). I'm finding the 2.0 approach interesting, but I'm not yet convinced this is an improvement.  Nevertheless, I will start some experiments using it.  

I'm also trying to wrap my head around the Provider approach.  I haven't seen much written about this either, other than the security related providers, so thanks for the coverage. I had no idea that there was so much more to this.

One thing that I agonize about with every project I work on is whether to use datasets or domain objects.  Other than blogs, I don't see much practical coverage of this in books, so this was a strong incentive to purchase your book. I really liked the idea of the Domain object using Reflection to tie its properties to the applicable database fields. I look forward to trying that technique in my future projects, as soon as I learn a bit more about Reflection. This and the data access snippets you provided seems a lot more approachable (with a lot less bloat) than the NetTiers library that came with the Codesmith code generator I use.

As a Codesmith user, it was nice to see some mention of code generation.  Though it would have been nice to see the one I use represented, I can understand the desire to focus on ones that are open source and freely available. In fact, thanks to the coverage in the book, I have downloaded Subsonic and have been playing with it a bit.

All in all, this book seems to be a worthwhile investment. Thanks for writing it! 

Joseph Van Valen</description>
		<content:encoded><![CDATA[<p>Hi Brennan,</p>
<p>Your book has only recently started showing up on the shelves of my local bookstores, or I would have gotten it sooner. I purchased your book and have been going through it for the last few days. There are lots of great ideas in here that I hope to put into practice at some point. </p>
<p>Right off the bat, I enjoyed the discussion of the development environment. In particular setting up Virtual PC's as a development environment. Out of curiosity, what machine resources do you typically devote to this (virtual disk sizes, ram) for development?  I tried setting up Virtual PC using Windows Server 2003 in a virutal machine with Visual Studio, Sql Server, and Team System Server Workstation, but it is very slow - I suspect I need to use a larger virtual disk.</p>
<p>I'm still set in the ASP.NET 1.1 way of doing things (i.e. Databind() calls instead of DataObjects and DataSource controls). I'm finding the 2.0 approach interesting, but I'm not yet convinced this is an improvement.  Nevertheless, I will start some experiments using it.  </p>
<p>I'm also trying to wrap my head around the Provider approach.  I haven't seen much written about this either, other than the security related providers, so thanks for the coverage. I had no idea that there was so much more to this.</p>
<p>One thing that I agonize about with every project I work on is whether to use datasets or domain objects.  Other than blogs, I don't see much practical coverage of this in books, so this was a strong incentive to purchase your book. I really liked the idea of the Domain object using Reflection to tie its properties to the applicable database fields. I look forward to trying that technique in my future projects, as soon as I learn a bit more about Reflection. This and the data access snippets you provided seems a lot more approachable (with a lot less bloat) than the NetTiers library that came with the Codesmith code generator I use.</p>
<p>As a Codesmith user, it was nice to see some mention of code generation.  Though it would have been nice to see the one I use represented, I can understand the desire to focus on ones that are open source and freely available. In fact, thanks to the coverage in the book, I have downloaded Subsonic and have been playing with it a bit.</p>
<p>All in all, this book seems to be a worthwhile investment. Thanks for writing it! </p>
<p>Joseph Van Valen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamey</title>
		<link>http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22563</link>
		<dc:creator>Jamey</dc:creator>
		<pubDate>Fri, 28 Sep 2007 00:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22563</guid>
		<description>hurray!!!</description>
		<content:encoded><![CDATA[<p>hurray!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Knospe</title>
		<link>http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22373</link>
		<dc:creator>Chris Knospe</dc:creator>
		<pubDate>Fri, 21 Sep 2007 01:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22373</guid>
		<description>Nice work!  Stealth publishing, like a ninja!</description>
		<content:encoded><![CDATA[<p>Nice work!  Stealth publishing, like a ninja!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Nofsinger</title>
		<link>http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22357</link>
		<dc:creator>Adam Nofsinger</dc:creator>
		<pubDate>Thu, 20 Sep 2007 14:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22357</guid>
		<description>Dude, you published a book?  That's awesome - congrats!</description>
		<content:encoded><![CDATA[<p>Dude, you published a book?  That's awesome - congrats!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerry Heidenreich</title>
		<link>http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22356</link>
		<dc:creator>Gerry Heidenreich</dc:creator>
		<pubDate>Thu, 20 Sep 2007 14:29:48 +0000</pubDate>
		<guid isPermaLink="false">http://brennan.offwhite.net/blog/2007/09/19/the-books-have-arrived/#comment-22356</guid>
		<description>W00t!  Congratulations man!  I preordered my copy like... a year ago.  Should be here any day then I guess.</description>
		<content:encoded><![CDATA[<p>W00t!  Congratulations man!  I preordered my copy like... a year ago.  Should be here any day then I guess.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
