<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>MVC Contrib -  MvcContrib.org</title><link>http://www.codeplex.com/MVCContrib/Project/ProjectRss.aspx</link><description>This is the contrib project for the ASP.Net MVC framework.     </description><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/site/users/view/Woil'&gt;Woil&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Newer version of the Convention Rescue patch, now merged into RescueAttribute. Includes an update to the ConventionController sample.&lt;br /&gt;&lt;br /&gt;&amp;#91;Rescue&amp;#40;&amp;#34;DefaultRescue&amp;#34;&amp;#41;&amp;#93; &lt;br /&gt;public ActionResult ControllerAction  &amp;#123;&lt;br /&gt;    throw new CookieException&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;    &amp;#47;&amp;#47;this will look for CookieException.aspx&lt;br /&gt;    &amp;#47;&amp;#47;then call DefaultRescue.aspx if not found&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;/p&gt;</description><author>Woil</author><pubDate>Tue, 13 May 2008 18:23:28 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080513P</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/site/users/view/katokay'&gt;katokay&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;This patch has two parts.&lt;br /&gt;&lt;br /&gt;Updated dll&amp;#39;s for release version of Unity.&lt;br /&gt;&lt;br /&gt;Fixed bug for NameValueDeserializer cyclical reference bug. This will also prevent the instantiation of objects that are not part of the request.&lt;/p&gt;</description><author>katokay</author><pubDate>Mon, 12 May 2008 17:25:18 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080512P</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/site/users/view/Woil'&gt;Woil&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Adds ConventionRescueAttribute, providing ability to switch to different rescue views depending on what type of exception is thrown. If a matching view is not found it will use the rescue provided in the attribute. Exception types can also be provided which will force only those types of exceptions to be grabbed by this view. This prevents the need for multiple attributes in front of every class&amp;#47;method that needs routing depending on the exception thrown.&lt;br /&gt;&lt;br /&gt;    &amp;#91;ConventionRescue&amp;#40;&amp;#34;DefaultRescue&amp;#34;&amp;#41;&amp;#93; &lt;br /&gt;    public ActionResult ControllerAction  &amp;#123;&lt;br /&gt;        throw new CookieException&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;    &lt;br /&gt;        &amp;#47;&amp;#47;this will look for CookieException.aspx&lt;br /&gt;        &amp;#47;&amp;#47;then call DefaultRescue if not found&lt;br /&gt;    &amp;#125;&lt;/p&gt;</description><author>Woil</author><pubDate>Fri, 09 May 2008 23:43:39 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080509P</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=markhildreth'&gt;markhildreth&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;When using a strongly-typed view, many of my tests include checking that the view rendered was passed correct data. It may be a few lines to assert that the type is itself correct before casting to the correct type to check that the underlying values are correct. This patch makes a method that replaces needing to do this...&lt;br /&gt;&lt;br /&gt;var result &amp;#61; controller.Run&amp;#40;&amp;#41;.AssertViewRendered&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;Assert.That&amp;#40;result.ViewData, Is.Type&amp;#40;typeof&amp;#40;MyCustomData&amp;#41;, &amp;#34;Expected view data of type &amp;#39;MyCustomData&amp;#39;, actual&amp;#58; &amp;#39;&amp;#123;0&amp;#125;&amp;#39;&amp;#34;, typeof&amp;#40;result.ViewData&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;var myCustomType &amp;#61; result.ViewData as MyCustomData&amp;#59;&lt;br /&gt;Assert.That&amp;#40;myCustomType, ...&amp;#41;&lt;br /&gt;&lt;br /&gt;....with this...&lt;br /&gt;var myCustomType&amp;#61; controller.Run&amp;#40;&amp;#41;.AssertViewRendered&amp;#40;&amp;#41;.WithViewData&amp;#60;MyCustomType&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;Assert.That&amp;#40;myCustomType, ...&amp;#41;&lt;/p&gt;</description><author>markhildreth</author><pubDate>Thu, 08 May 2008 03:49:49 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080508A</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=stevenr12'&gt;stevenr12&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Removing external dependencies from the domain model in the Ninject sample.&lt;/p&gt;</description><author>stevenr12</author><pubDate>Wed, 07 May 2008 06:07:47 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080507A</guid></item><item><title>Patch Applied</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has applied patch #1179.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;Applied in revision 353.&lt;/p&gt;</description><author>JeremyS</author><pubDate>Tue, 06 May 2008 16:28:20 GMT</pubDate><guid isPermaLink="false">Patch Applied 20080506P</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=timtas'&gt;timtas&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;This patch primarily enhances the NameValueDeserializer to handle cases when a key has multiple values.  Consider when a select control with multiple selections.  Before this enhancement, this key would be treated as one simple value in the form of a comma separated string.  It makes more sense to first try to match this with a a simple array list proprty.  I believe that this a common scenario, and therefore I am submitting a patch.  This patch includes some other fixes and enhancements in related areas.  Here are the details&amp;#58;&lt;br /&gt;&lt;br /&gt;1&amp;#41; Support deserializing multi-value keys to simple array list properties.&lt;br /&gt;2&amp;#41; Fix bug where individual checkbox controls are not deserialized properly&lt;br /&gt;3&amp;#41; Fix Select&amp;#60;T&amp;#62; problem whereby options are ordered haphazardly instead of by enum value&lt;br /&gt;4&amp;#41; Add support to Select -- can set selected values of from complex types&lt;br /&gt;5&amp;#41; Add support to Select -- can set &amp;#34;selectedValue&amp;#34; attribute as complex type and&amp;#47;or collection&lt;br /&gt;6&amp;#41; Interpret a selected value of null as and empty string &amp;#40;instead of doing nothing&amp;#41;.  This is useful in conjunction with the firstOption feature&lt;br /&gt;&lt;br /&gt;I have also added test to cover these features.&lt;/p&gt;</description><author>timtas</author><pubDate>Mon, 05 May 2008 18:27:45 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080505P</guid></item><item><title>Patch Declined</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has declined patch #1101.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;This would be too much of a breaking change. However, it should be possible to work around the issue. See http&amp;#58;&amp;#47;&amp;#47;groups.google.com&amp;#47;group&amp;#47;mvccontrib-discuss&amp;#47;browse_thread&amp;#47;thread&amp;#47;61e2b46c53486a22&lt;/p&gt;</description><author>JeremyS</author><pubDate>Mon, 05 May 2008 10:47:00 GMT</pubDate><guid isPermaLink="false">Patch Declined 20080505A</guid></item><item><title>Patch Applied</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has applied patch #1141.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;Applied in revision 349.&lt;/p&gt;</description><author>JeremyS</author><pubDate>Mon, 05 May 2008 10:46:17 GMT</pubDate><guid isPermaLink="false">Patch Applied 20080505A</guid></item><item><title>Patch Applied</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has applied patch #1128.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;Applied in revision 347. However, a better approach to automatically set the ViewEngine is to use Windsor&amp;#39;s Setter Injection support.&lt;/p&gt;</description><author>JeremyS</author><pubDate>Mon, 05 May 2008 10:25:48 GMT</pubDate><guid isPermaLink="false">Patch Applied 20080505A</guid></item><item><title>Patch Declined</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has declined patch #1142.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;The same result can be achieved using filters as discussed at http&amp;#58;&amp;#47;&amp;#47;groups.google.com&amp;#47;group&amp;#47;mvccontrib-discuss&amp;#47;browse_thread&amp;#47;thread&amp;#47;61e2b46c53486a22&lt;/p&gt;</description><author>JeremyS</author><pubDate>Mon, 05 May 2008 10:21:20 GMT</pubDate><guid isPermaLink="false">Patch Declined 20080505A</guid></item><item><title>Patch Applied</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has applied patch #1168.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;Applied in revision 345.&lt;/p&gt;</description><author>JeremyS</author><pubDate>Mon, 05 May 2008 10:19:10 GMT</pubDate><guid isPermaLink="false">Patch Applied 20080505A</guid></item><item><title>Patch Applied</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has applied patch #1162.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;Applied with modifications in revision 343.&lt;/p&gt;</description><author>JeremyS</author><pubDate>Sat, 03 May 2008 17:05:29 GMT</pubDate><guid isPermaLink="false">Patch Applied 20080503P</guid></item><item><title>Patch Applied</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=JeremyS'&gt;JeremyS&lt;/a&gt; has applied patch #1158.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;Applied in revision 341.&lt;/p&gt;</description><author>JeremyS</author><pubDate>Sat, 03 May 2008 15:07:21 GMT</pubDate><guid isPermaLink="false">Patch Applied 20080503P</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=CVertex'&gt;CVertex&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Phil Haack wrote a url routing debugger I think is invaluable for learning about routes and debugging them.&lt;br /&gt;See http&amp;#58;&amp;#47;&amp;#47;haacked.com&amp;#47;archive&amp;#47;2008&amp;#47;03&amp;#47;13&amp;#47;url-routing-debugger.aspx&lt;br /&gt;&lt;br /&gt;This patch is the 4 core files of haack&amp;#39;s code unchanged except for a namespace change to MvcContrib.Routing&lt;br /&gt;&lt;br /&gt;Hope Phil doesn&amp;#39;t mind me putting it here.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;</description><author>CVertex</author><pubDate>Sat, 03 May 2008 06:40:04 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080503A</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=timtas'&gt;timtas&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;I found that Html.Form&amp;#40;&amp;#41;.Select does not naturally support enumerations.  I want to populate selects with enum values and then set selected items using enum arrays.  Also, I found that it does not support setting selected values of multi-selects.  To accomplish these two items, I created overrides like&amp;#58;&lt;br /&gt;&lt;br /&gt;Html.Form&amp;#40;&amp;#41;.Select&amp;#60;Color&amp;#62;&amp;#40;&amp;#34;myEnum&amp;#34;&amp;#41;&lt;br /&gt;Html.Form&amp;#40;&amp;#41;.Select&amp;#60;Color&amp;#62;&amp;#40;&amp;#34;myEnum&amp;#34;, new Hash&amp;#40;firstOption &amp;#61;&amp;#62; &amp;#34;Choose&amp;#34;, firstOptionValue &amp;#61;&amp;#62; &amp;#34;&amp;#34;&amp;#41;&lt;br /&gt;&lt;br /&gt;...where Color is an enum.  The latter will render a select with options&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#60;option value&amp;#61;&amp;#34;&amp;#34;&amp;#62;Choose&amp;#60;&amp;#47;option&amp;#62;&lt;br /&gt;&amp;#60;option value&amp;#61;&amp;#34;0&amp;#34;&amp;#62;Red&amp;#60;&amp;#47;option&amp;#62;&lt;br /&gt;&amp;#60;option value&amp;#61;&amp;#34;1&amp;#34;&amp;#62;Blue&amp;#60;&amp;#47;option&amp;#62;&lt;br /&gt;&amp;#60;option value&amp;#61;&amp;#34;2&amp;#34;&amp;#62;Green&amp;#60;&amp;#47;option&amp;#62;&lt;br /&gt;&lt;br /&gt;Further, I added support to all overrides of Select for selecting multiple options.  This can be done in two ways.  First, using the method&amp;#58;&lt;br /&gt;&lt;br /&gt;Html.Form&amp;#40;&amp;#41;.Select&amp;#60;Color&amp;#62;&amp;#40;&amp;#34;myEnum&amp;#34;, new Hash&amp;#40;selectedValue &amp;#61;&amp;#62; new Color&amp;#91;&amp;#93; &amp;#123; Color.Red, Color.Green &amp;#125;&amp;#41;&amp;#41;&lt;br /&gt;&lt;br /&gt;Second, using a view data entry matching the select name&amp;#58;&lt;br /&gt;&lt;br /&gt;ViewData&amp;#91;&amp;#34;myEnum&amp;#34;&amp;#93; &amp;#61; new Color&amp;#91;&amp;#93; &amp;#123; Color.Red, Color.Green &amp;#125;&amp;#59;&lt;br /&gt;&lt;br /&gt;To see how the code works, look at these new tests in When_Select_Is_Invoked class&amp;#58;&lt;br /&gt;&lt;br /&gt;With_generic_enum_parameter_the_correct_html_is_generated&lt;br /&gt;With_generic_enum_parameter__and_firstoption_and_selected_the_correct_html_is_generated&lt;br /&gt;With_generic_enum_parameter_and_the_name_matches_an_item_in_the_ViewData_it_should_be_databound&lt;/p&gt;</description><author>timtas</author><pubDate>Wed, 30 Apr 2008 19:24:32 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080430P</guid></item><item><title>CREATED ISSUE: Databind support Castle ActiveRecord class</title><link>http://www.codeplex.com/MVCContrib/WorkItem/View.aspx?WorkItemId=2133</link><description>I am trying use Deserialize attribute from MvcContrib.Attributes.DeserializeAttribute with a Castle ActiveRecord class. Something like this&amp;#58;&lt;br /&gt;&lt;br /&gt;public ActionResult Create&amp;#40;&amp;#91;Deserialize&amp;#40;&amp;#34;DocumentoCliente&amp;#34;&amp;#41;&amp;#93; DocumentoCliente documentoCliente&amp;#41;&lt;br /&gt;&lt;br /&gt;I get cannot create instance error. &lt;br /&gt;&lt;br /&gt;This error is because MvcContrib.NameValueDeserializer.CreateInstance try create a IDictionary instance from PropertiesValidationErrorMessage of ActiveRecordValidationBase class.&lt;br /&gt;&lt;br /&gt; I upload screenshot error for more details&lt;br /&gt;&lt;br /&gt;I fix inserting a new if in NameValueDeserializer.Deserialize&amp;#40;&amp;#41; method&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;if&amp;#40;IsSimpleProperty&amp;#40;propertyType&amp;#41;&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;string sValue &amp;#61; collection.Get&amp;#40;name&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;if&amp;#40;sValue &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;SetValue&amp;#40;instance, property, GetConvertible&amp;#40;sValue&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;else if&amp;#40;propertyType.IsArray&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;Type elementType &amp;#61; propertyType.GetElementType&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;ArrayList arrayInstance &amp;#61; DeserializeArrayList&amp;#40;collection, name, elementType&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;SetValue&amp;#40;instance, property, arrayInstance.ToArray&amp;#40;elementType&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;else if&amp;#40;IsGenericList&amp;#40;propertyType&amp;#41;&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;IList genericListProperty &amp;#61; GetGenericListProperty&amp;#40;instance, property&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;if&amp;#40;genericListProperty &amp;#61;&amp;#61; null&amp;#41; continue&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#9;DeserializeGenericList&amp;#40;collection, name, propertyType, ref genericListProperty&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;                else if &amp;#40;&amp;#40;&amp;#40;System.Reflection.MemberInfo&amp;#41;&amp;#40;property&amp;#41;&amp;#41;.Name.Equals&amp;#40;&amp;#34;PropertiesValidationErrorMessage&amp;#34;&amp;#41;&amp;#41;&lt;br /&gt;                &amp;#123; &lt;br /&gt;                    &amp;#47;&amp;#47; Castle Active Record support.. do nothing&lt;br /&gt;                &amp;#125;&lt;br /&gt;                else&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    object complexProperty &amp;#61; GetComplexProperty&amp;#40;instance, property&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                    if &amp;#40;complexProperty &amp;#61;&amp;#61; null&amp;#41; continue&amp;#59;&lt;br /&gt;&lt;br /&gt;                    Deserialize&amp;#40;collection, name, propertyType, ref complexProperty&amp;#41;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;&lt;br /&gt;I dont know if this is the best solution for this problem.&lt;br /&gt;&lt;br /&gt;What we can do&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks and Sorry for my poor english,&lt;br /&gt;&lt;br /&gt;Jo&amp;#227;o Carlos Clementoni&lt;br /&gt;</description><author>jcclementoni</author><pubDate>Wed, 30 Apr 2008 04:02:39 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Databind support Castle ActiveRecord class 20080430A</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/MVCContrib/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/UserAccount/UserProfile.aspx?UserName=joshuaflanagan'&gt;joshuaflanagan&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Extends the ActionResultHelper to allow you to specify a strongly typed &amp;#40;resharperable&amp;#41; controller and action for ActionRedirectResults.&lt;br /&gt;&lt;br /&gt;Allows&amp;#58;&lt;br /&gt;controller.Index&amp;#40;&amp;#41;.AssertIsActionRedirect&amp;#40;&amp;#41;.ToAction&amp;#60;HomeController&amp;#62;&amp;#40;c &amp;#61;&amp;#62; c.About&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;instead of&amp;#58;&lt;br /&gt;controller.Index&amp;#40;&amp;#41;.AssertIsActionRedirect&amp;#40;&amp;#41;.ToController&amp;#40;&amp;#34;Home&amp;#34;&amp;#41;.ToAction&amp;#40;&amp;#34;about&amp;#34;&amp;#41;&lt;/p&gt;</description><author>joshuaflanagan</author><pubDate>Tue, 29 Apr 2008 15:23:23 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080429P</guid></item><item><title>COMMENTED TASK: Restful Routing Sample App</title><link>http://www.codeplex.com/MVCContrib/WorkItem/View.aspx?WorkItemId=575</link><description>Build a sample application showing off restful routing.&lt;br /&gt;Comments: ** Comment from web user: kevin_ortman ** &lt;p&gt;BTW... I documented this sample here&amp;#58; http&amp;#58;&amp;#47;&amp;#47;kevinortman.blogspot.com&amp;#47;2008&amp;#47;04&amp;#47;simplyrestfulroutehandler-sample.html&lt;/p&gt;</description><author>kevin_ortman</author><pubDate>Mon, 28 Apr 2008 05:24:20 GMT</pubDate><guid isPermaLink="false">COMMENTED TASK: Restful Routing Sample App 20080428A</guid></item><item><title>COMMENTED TASK: Restful Routing Sample App</title><link>http://www.codeplex.com/MVCContrib/WorkItem/View.aspx?WorkItemId=575</link><description>Build a sample application showing off restful routing.&lt;br /&gt;Comments: ** Comment from web user: kevin_ortman ** &lt;p&gt;You are welcome to use this sample app.  It was build using&amp;#58;&lt;br /&gt;  MVC 0416 &amp;#40;4&amp;#47;16&amp;#47;08&amp;#41;&lt;br /&gt;  MVCContrib 0.0.1.101 &amp;#40;4&amp;#47;19&amp;#47;08&amp;#41;&lt;/p&gt;&lt;p&gt;It&amp;#39;s a super-simple example that shows all 8 actions.&lt;br /&gt;&lt;/p&gt;</description><author>kevin_ortman</author><pubDate>Mon, 28 Apr 2008 03:22:56 GMT</pubDate><guid isPermaLink="false">COMMENTED TASK: Restful Routing Sample App 20080428A</guid></item></channel></rss>