<?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: How we do MVC</title>
	<atom:link href="http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/</link>
	<description>Strong opinions, weakly held</description>
	<lastBuildDate>Wed, 22 May 2013 13:39:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Whoever</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-5469</link>
		<dc:creator>Whoever</dc:creator>
		<pubDate>Wed, 06 Feb 2013 04:15:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-5469</guid>
		<description>This InputFor(something).AsDropdown with integrated custom attribute sounds like a very elegant solution.  Any chance let us take a peek?</description>
		<content:encoded><![CDATA[<p>This InputFor(something).AsDropdown with integrated custom attribute sounds like a very elegant solution.  Any chance let us take a peek?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Sylvester</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-4407</link>
		<dc:creator>Rob Sylvester</dc:creator>
		<pubDate>Thu, 15 Mar 2012 21:41:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-4407</guid>
		<description>I really like your InputFor concept can you post the source code for it?</description>
		<content:encoded><![CDATA[<p>I really like your InputFor concept can you post the source code for it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-3614</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 19 Jul 2011 12:01:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-3614</guid>
		<description>Sometimes, just setters. Sometimes, I don&#039;t expose setters on the domain object and I have methods to mutate.</description>
		<content:encoded><![CDATA[<p>Sometimes, just setters. Sometimes, I don&#8217;t expose setters on the domain object and I have methods to mutate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin Eidelman</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-3610</link>
		<dc:creator>Benjamin Eidelman</dc:creator>
		<pubDate>Fri, 15 Jul 2011 19:46:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-3610</guid>
		<description>you say you use Automapper to go from Domain to EditModel, can you give some info on how you put changes back into original Domain entities?
ie: update property -&gt; property, and update children collections, ie. add new rows, delete not existent rows, update modified rows, and different update task like these.
AFAIK AutoMapper can&#039;t do that, you do it manually?Thanks a lot Jimmy!</description>
		<content:encoded><![CDATA[<p>you say you use Automapper to go from Domain to EditModel, can you give some info on how you put changes back into original Domain entities?<br />
ie: update property -&gt; property, and update children collections, ie. add new rows, delete not existent rows, update modified rows, and different update task like these.<br />
AFAIK AutoMapper can&#8217;t do that, you do it manually?Thanks a lot Jimmy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmitri</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-1502</link>
		<dc:creator>Dmitri</dc:creator>
		<pubDate>Fri, 28 May 2010 21:14:33 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-1502</guid>
		<description>You mention that you execute 4 browsers during WatiN tests, but my experiments show that multithreading WatiN is generally a bad idea and leads to exceptions almost instantly. Can you elaborate a bit on which Browser object you are using and how? Thanks.

Dmitri</description>
		<content:encoded><![CDATA[<p>You mention that you execute 4 browsers during WatiN tests, but my experiments show that multithreading WatiN is generally a bad idea and leads to exceptions almost instantly. Can you elaborate a bit on which Browser object you are using and how? Thanks.</p>
<p>Dmitri</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bogardj</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-1501</link>
		<dc:creator>bogardj</dc:creator>
		<pubDate>Sun, 29 Nov 2009 21:45:34 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-1501</guid>
		<description>@Martin

Watin lets us take screenshots of the IE window, and Gallio lets us embed images.  Put the two together - presto!  We hook up into the TearDown event and check the test status - Gallio lets us do this as well.</description>
		<content:encoded><![CDATA[<p>@Martin</p>
<p>Watin lets us take screenshots of the IE window, and Gallio lets us embed images.  Put the two together &#8211; presto!  We hook up into the TearDown event and check the test status &#8211; Gallio lets us do this as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Nilsson</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-1500</link>
		<dc:creator>Martin Nilsson</dc:creator>
		<pubDate>Sun, 29 Nov 2009 14:11:29 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-1500</guid>
		<description>&quot;our automated UI testing includes screenshots of failures, all in the background, with no human intervention&quot;

How do you hook into the test runner to create the screen shot? Do you have a plugin for the runner, like a nunit EventListener.UnhandledException? Or do you have an exception handler in your test methods?</description>
		<content:encoded><![CDATA[<p>&#8220;our automated UI testing includes screenshots of failures, all in the background, with no human intervention&#8221;</p>
<p>How do you hook into the test runner to create the screen shot? Do you have a plugin for the runner, like a nunit EventListener.UnhandledException? Or do you have an exception handler in your test methods?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shrkfish</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-1499</link>
		<dc:creator>shrkfish</dc:creator>
		<pubDate>Sat, 06 Jun 2009 16:33:30 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-1499</guid>
		<description>.net MVC</description>
		<content:encoded><![CDATA[<p>.net MVC</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-1498</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 07 May 2009 15:12:10 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-1498</guid>
		<description>@Peter

You might take a look at Code Camp Server (referenced above) --

http://code.google.com/p/codecampserver/</description>
		<content:encoded><![CDATA[<p>@Peter</p>
<p>You might take a look at Code Camp Server (referenced above) &#8211;</p>
<p><a href="http://code.google.com/p/codecampserver/" rel="nofollow">http://code.google.com/p/codecampserver/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Morris</title>
		<link>http://lostechies.com/jimmybogard/2009/04/24/how-we-do-mvc/#comment-1497</link>
		<dc:creator>Peter Morris</dc:creator>
		<pubDate>Sun, 03 May 2009 09:45:48 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx#comment-1497</guid>
		<description>So any chance of seeing an example app?  It would be very interesting!</description>
		<content:encoded><![CDATA[<p>So any chance of seeing an example app?  It would be very interesting!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
