<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Serializing models for RouteValueDictionary and later model binding</title>
	<atom:link href="http://mhinze.com/2010/03/17/serializing-models-for-routevaluedictionary-and-later-model-binding/feed/" rel="self" type="application/rss+xml" />
	<link>http://mhinze.com/2010/03/17/serializing-models-for-routevaluedictionary-and-later-model-binding/</link>
	<description>Matt Hinze, learning in public</description>
	<lastBuildDate>Fri, 18 May 2012 15:09:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: federico</title>
		<link>http://mhinze.com/2010/03/17/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-362</link>
		<dc:creator><![CDATA[federico]]></dc:creator>
		<pubDate>Wed, 05 Oct 2011 16:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-362</guid>
		<description><![CDATA[Great IDEA. It is not a copy paste programming resource, it is OOD resource.]]></description>
		<content:encoded><![CDATA[<p>Great IDEA. It is not a copy paste programming resource, it is OOD resource.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://mhinze.com/2010/03/17/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-327</link>
		<dc:creator><![CDATA[Matt]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 20:36:15 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-327</guid>
		<description><![CDATA[The source is at http://unbinder.codeplex.com/ - feel free to submit changes!  I would be grateful for any improvements. 

The license is MS-PL. ]]></description>
		<content:encoded><![CDATA[<p>The source is at <a href="http://unbinder.codeplex.com/" rel="nofollow">http://unbinder.codeplex.com/</a> &#8211; feel free to submit changes!  I would be grateful for any improvements. </p>
<p>The license is MS-PL. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dotnetchris</title>
		<link>http://mhinze.com/2010/03/17/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-324</link>
		<dc:creator><![CDATA[dotnetchris]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 20:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-324</guid>
		<description><![CDATA[I came across unbinder and ergo your blog after seeing you post on https://groups.google.com/d/topic/mvccontrib-discuss/-SXUz265__0/discussion as I was trying to figure out what I needed to do to make PassParametersDuringRedirect not be wonky, which clearly is to just not use it and instead pass stuff through the routes.

After some poking around it, I tweaked a few lines that could benefit being added, in the class Unbinder

Line 60: var modifiedPrefix = string.IsNullOrWhiteSpace(prefix) ? name : prefix + &quot;.&quot; + name;

Line 77:  var prefixFormatString = string.IsNullOrWhiteSpace(prefix) ? &quot;[{0}]&quot; : prefix + &quot;[{0}]&quot;;

Line 92: if (string.IsNullOrEmpty(prefix)) throw new ArgumentNullException(&quot;prefix&quot;, &quot;prefix is required to unbind simple values&quot;);

After looking at unbinder it looks like I could have uses for it, is your code published to public domain or what license do you release your source under?]]></description>
		<content:encoded><![CDATA[<p>I came across unbinder and ergo your blog after seeing you post on <a href="https://groups.google.com/d/topic/mvccontrib-discuss/-SXUz265__0/discussion" rel="nofollow">https://groups.google.com/d/topic/mvccontrib-discuss/-SXUz265__0/discussion</a> as I was trying to figure out what I needed to do to make PassParametersDuringRedirect not be wonky, which clearly is to just not use it and instead pass stuff through the routes.</p>
<p>After some poking around it, I tweaked a few lines that could benefit being added, in the class Unbinder</p>
<p>Line 60: var modifiedPrefix = string.IsNullOrWhiteSpace(prefix) ? name : prefix + &#8220;.&#8221; + name;</p>
<p>Line 77:  var prefixFormatString = string.IsNullOrWhiteSpace(prefix) ? &#8220;[{0}]&#8221; : prefix + &#8220;[{0}]&#8220;;</p>
<p>Line 92: if (string.IsNullOrEmpty(prefix)) throw new ArgumentNullException(&#8220;prefix&#8221;, &#8220;prefix is required to unbind simple values&#8221;);</p>
<p>After looking at unbinder it looks like I could have uses for it, is your code published to public domain or what license do you release your source under?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://mhinze.com/2010/03/17/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-287</link>
		<dc:creator><![CDATA[Adam]]></dc:creator>
		<pubDate>Sun, 20 Feb 2011 11:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-287</guid>
		<description><![CDATA[Hey,

This is great. I still can&#039;t believe its not built into Asp.net MVC yet.
Was just about to write my own one when I saw this.

Thanks
Adam]]></description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>This is great. I still can&#8217;t believe its not built into Asp.net MVC yet.<br />
Was just about to write my own one when I saw this.</p>
<p>Thanks<br />
Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop &#8211; March 18, 2010 &#124; Alvin Ashcraft&#039;s Morning Dew</title>
		<link>http://mhinze.com/2010/03/17/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-142</link>
		<dc:creator><![CDATA[Dew Drop &#8211; March 18, 2010 &#124; Alvin Ashcraft&#039;s Morning Dew]]></dc:creator>
		<pubDate>Thu, 18 Mar 2010 13:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://mhinze.com/serializing-models-for-routevaluedictionary-and-later-model-binding/#comment-142</guid>
		<description><![CDATA[[...] Serializing models for RouteValueDictionary and later model binding (Matt Hinze) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Serializing models for RouteValueDictionary and later model binding (Matt Hinze) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

