<?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: Automapper Auto Profile Registration.</title>
	<atom:link href="http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 18:10: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: txvkguusf</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-282</link>
		<dc:creator>txvkguusf</dc:creator>
		<pubDate>Sat, 21 Nov 2009 15:27:29 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-282</guid>
		<description>2lp0WJ  &lt;a href=&quot;http://nxyxouttyolw.com/&quot;&gt;nxyxouttyolw&lt;/a&gt;, [url=http://ksavcgdtamdh.com/]ksavcgdtamdh[/url], [link=http://metjivcucgmb.com/]metjivcucgmb[/link], http://vfdriybkulua.com/</description>
		<content:encoded><![CDATA[<p>2lp0WJ  <a href="http://nxyxouttyolw.com/">nxyxouttyolw</a>, [url=http://ksavcgdtamdh.com/]ksavcgdtamdh[/url], [link=http://metjivcucgmb.com/]metjivcucgmb[/link], <a href="http://vfdriybkulua.com/" rel="nofollow">http://vfdriybkulua.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyres Dealer</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-281</link>
		<dc:creator>Tyres Dealer</dc:creator>
		<pubDate>Mon, 16 Nov 2009 12:18:51 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-281</guid>
		<description>Great post! I’ve been very interested in Automapper Auto Profile Registration for a long time.
</description>
		<content:encoded><![CDATA[<p>Great post! I’ve been very interested in Automapper Auto Profile Registration for a long time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyres Dealer </title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-280</link>
		<dc:creator>Tyres Dealer </dc:creator>
		<pubDate>Mon, 16 Nov 2009 08:37:38 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-280</guid>
		<description>Great post! I’ve been very interested in Automapper Auto Profile Registration for a long time.
</description>
		<content:encoded><![CDATA[<p>Great post! I’ve been very interested in Automapper Auto Profile Registration for a long time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Riley</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-279</link>
		<dc:creator>Ryan Riley</dc:creator>
		<pubDate>Fri, 06 Nov 2009 05:51:19 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-279</guid>
		<description>@Eric  Sorry, I wasn&#039;t questioning the use of ForEach, which I also use regularly, just the implementation. I probably over-engineered mine; just curious what you thought about the approach.</description>
		<content:encoded><![CDATA[<p>@Eric  Sorry, I wasn&#8217;t questioning the use of ForEach, which I also use regularly, just the implementation. I probably over-engineered mine; just curious what you thought about the approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erichexter</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-278</link>
		<dc:creator>erichexter</dc:creator>
		<pubDate>Thu, 05 Nov 2009 19:49:18 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-278</guid>
		<description>@Ryan  Honestly I went with the .ForEach extension method because it is already in our project and it reads like a sentence which is a big win, for me.</description>
		<content:encoded><![CDATA[<p>@Ryan  Honestly I went with the .ForEach extension method because it is already in our project and it reads like a sentence which is a big win, for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Riley</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-277</link>
		<dc:creator>Ryan Riley</dc:creator>
		<pubDate>Thu, 05 Nov 2009 16:29:26 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-277</guid>
		<description>After seeing reading a bit about performance differences in foreach over a List&lt;T&gt; and for over an array, I made the following adjustments to &lt;a href=&quot;http://gist.github.com/227172&quot;&gt;my implementation&lt;/a&gt;. Obviously, that destroys the lazy loading and enumerates immediately, but I figure you&#039;re going to hit that at some point. All that to say, what was your thought behind just using a simple foreach (other than it&#039;s simple)? Or was that it? Just curious. Mine is probably overkill. I haven&#039;t even tested the performance implications (bad me); just trying stuff out.</description>
		<content:encoded><![CDATA[<p>After seeing reading a bit about performance differences in foreach over a List<t> and for over an array, I made the following adjustments to <a href="http://gist.github.com/227172">my implementation</a>. Obviously, that destroys the lazy loading and enumerates immediately, but I figure you&#8217;re going to hit that at some point. All that to say, what was your thought behind just using a simple foreach (other than it&#8217;s simple)? Or was that it? Just curious. Mine is probably overkill. I haven&#8217;t even tested the performance implications (bad me); just trying stuff out.</t></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erichexter</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-276</link>
		<dc:creator>erichexter</dc:creator>
		<pubDate>Thu, 05 Nov 2009 10:01:35 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-276</guid>
		<description>@Craig  here are some examples of some mappings with a TypeConverter in Code Camp Server http://bit.ly/4qHEQU</description>
		<content:encoded><![CDATA[<p>@Craig  here are some examples of some mappings with a TypeConverter in Code Camp Server <a href="http://bit.ly/4qHEQU" rel="nofollow">http://bit.ly/4qHEQU</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Cavalier</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-275</link>
		<dc:creator>Craig Cavalier</dc:creator>
		<pubDate>Thu, 05 Nov 2009 08:41:08 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-275</guid>
		<description>I find posts like this really handy, especially when they are as relevant to me as this one!

I&#039;m also finding my profiles to be a bit unwieldy, however I suspect I&#039;m not using the Custom Type Converters, Custom Value Resolvers, Custom Value Formatters effectively.

I notice you said &quot;handle all of the mappings to and from the domain object&quot;. Do you have two-way mapping then? In the project I am working on, I am attemping Jimmy&#039;s suggestion of mapping EditModel to CommandMessages, but am still ironing out some of the rough edges in my implementation. Do you know if there an example of this in CodeCampServer?
</description>
		<content:encoded><![CDATA[<p>I find posts like this really handy, especially when they are as relevant to me as this one!</p>
<p>I&#8217;m also finding my profiles to be a bit unwieldy, however I suspect I&#8217;m not using the Custom Type Converters, Custom Value Resolvers, Custom Value Formatters effectively.</p>
<p>I notice you said &#8220;handle all of the mappings to and from the domain object&#8221;. Do you have two-way mapping then? In the project I am working on, I am attemping Jimmy&#8217;s suggestion of mapping EditModel to CommandMessages, but am still ironing out some of the rough edges in my implementation. Do you know if there an example of this in CodeCampServer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darrell Mozingo</title>
		<link>http://lostechies.com/erichexter/2009/11/05/automapper-auto-profile-registration/#comment-274</link>
		<dc:creator>Darrell Mozingo</dc:creator>
		<pubDate>Thu, 05 Nov 2009 05:16:23 +0000</pubDate>
		<guid isPermaLink="false">/blogs/hex/archive/2009/11/04/automapper-auto-profile-registration.aspx#comment-274</guid>
		<description>Direct and to the point - I like it.

Our profile is growing quite unwieldy too, but we only use it to map domain models to view models, so per-scenario wouldn&#039;t help us much. Per domain object sounds interesting, but 95% of our domain models map to a single view model (at least at the root - their hierarchy gets collapsed down).

Interesting idea though.</description>
		<content:encoded><![CDATA[<p>Direct and to the point &#8211; I like it.</p>
<p>Our profile is growing quite unwieldy too, but we only use it to map domain models to view models, so per-scenario wouldn&#8217;t help us much. Per domain object sounds interesting, but 95% of our domain models map to a single view model (at least at the root &#8211; their hierarchy gets collapsed down).</p>
<p>Interesting idea though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
