<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Fluent Ado.Net and API design</title>
	<atom:link href="http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/</link>
	<description></description>
	<lastBuildDate>Mon, 06 Sep 2010 17:48:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: links for 2009-04-30 &#171; Olivier&#8217;s Blog</title>
		<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/comment-page-1/#comment-45825</link>
		<dc:creator>links for 2009-04-30 &#171; Olivier&#8217;s Blog</dc:creator>
		<pubDate>Fri, 01 May 2009 00:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/#comment-45825</guid>
		<description>[...] Fluent Ado.Net and API design &#124; Elegant Code (tags: .net orm api 3.5 ado.net)      &#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] Fluent Ado.Net and API design | Elegant Code (tags: .net orm api 3.5 ado.net)      &nbsp; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jones</title>
		<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/comment-page-1/#comment-45676</link>
		<dc:creator>Jones</dc:creator>
		<pubDate>Mon, 27 Apr 2009 11:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/#comment-45676</guid>
		<description>Nice Post...</description>
		<content:encoded><![CDATA[<p>Nice Post&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Brandsma</title>
		<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/comment-page-1/#comment-45626</link>
		<dc:creator>Chris Brandsma</dc:creator>
		<pubDate>Fri, 24 Apr 2009 15:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/#comment-45626</guid>
		<description>I guess I&#039;m anal.  I like specifying the types in my params.

But I can add this:
        public FluentCommand Add(string name, TV value)
        {
            var param = new SqlCeParameter(name, value);
            _command.Parameters.Add(param);
            return this;
        }</description>
		<content:encoded><![CDATA[<p>I guess I&#8217;m anal.  I like specifying the types in my params.</p>
<p>But I can add this:<br />
        public FluentCommand Add(string name, TV value)<br />
        {<br />
            var param = new SqlCeParameter(name, value);<br />
            _command.Parameters.Add(param);<br />
            return this;<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cmartin</title>
		<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/comment-page-1/#comment-45624</link>
		<dc:creator>cmartin</dc:creator>
		<pubDate>Fri, 24 Apr 2009 15:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/#comment-45624</guid>
		<description>Couldn&#039;t you just infer the type of parameter and call it .Add instead of .AddX?</description>
		<content:encoded><![CDATA[<p>Couldn&#8217;t you just infer the type of parameter and call it .Add instead of .AddX?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop - April 24, 2009 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/comment-page-1/#comment-45620</link>
		<dc:creator>Dew Drop - April 24, 2009 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Fri, 24 Apr 2009 13:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/#comment-45620</guid>
		<description>[...] Fluent Ado.Net and API design (Chris Brandsma) [...]</description>
		<content:encoded><![CDATA[<p>[...] Fluent Ado.Net and API design (Chris Brandsma) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Starr</title>
		<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/comment-page-1/#comment-45611</link>
		<dc:creator>David Starr</dc:creator>
		<pubDate>Fri, 24 Apr 2009 05:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/#comment-45611</guid>
		<description>I agree that code in the wild is far scarier than public speaking. Great job, Chris.</description>
		<content:encoded><![CDATA[<p>I agree that code in the wild is far scarier than public speaking. Great job, Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan Van Ryswyck</title>
		<link>http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/comment-page-1/#comment-45610</link>
		<dc:creator>Jan Van Ryswyck</dc:creator>
		<pubDate>Fri, 24 Apr 2009 05:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/04/23/fluent-adonet-and-api-design/#comment-45610</guid>
		<description>I&#039;ve used Sybase at my previous employer, so I&#039;m not even going to look up what Sybase Ultralight is. :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used Sybase at my previous employer, so I&#8217;m not even going to look up what Sybase Ultralight is. <img src='http://elegantcode.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
