<?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: Method to Copy Data Between Objects of Different Types</title>
	<atom:link href="http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/</link>
	<description>Software by Design</description>
	<lastBuildDate>Wed, 01 Sep 2010 07:49:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: IanT8</title>
		<link>http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/comment-page-1/#comment-9076</link>
		<dc:creator>IanT8</dc:creator>
		<pubDate>Wed, 01 Sep 2010 07:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/#comment-9076</guid>
		<description>How about AutoMapper?</description>
		<content:encoded><![CDATA[<p>How about AutoMapper?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darshak</title>
		<link>http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/comment-page-1/#comment-4864</link>
		<dc:creator>Darshak</dc:creator>
		<pubDate>Sat, 27 Jun 2009 05:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/#comment-4864</guid>
		<description>hi, i have the similar requirement, but can u guid me how i can copy members of different types.
Eg. Class A contain Member called ContactDetail and Class B contain Member called ContactDetail

here the name of property is same, but both contactDetail members are different. so i want to copy common members from ContactDetail. i think if propertyType is not same i have call recursively this method.

Thanks</description>
		<content:encoded><![CDATA[<p>hi, i have the similar requirement, but can u guid me how i can copy members of different types.<br />
Eg. Class A contain Member called ContactDetail and Class B contain Member called ContactDetail</p>
<p>here the name of property is same, but both contactDetail members are different. so i want to copy common members from ContactDetail. i think if propertyType is not same i have call recursively this method.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Extending CopyHelper using Extension Methods &#187; Alteridem Consulting</title>
		<link>http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/comment-page-1/#comment-2154</link>
		<dc:creator>Extending CopyHelper using Extension Methods &#187; Alteridem Consulting</dc:creator>
		<pubDate>Tue, 22 Jul 2008 13:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/#comment-2154</guid>
		<description>[...] my last two posts, I have been developing a small utility library to do the grunt work of copying data from an [...]</description>
		<content:encoded><![CDATA[<p>[...] my last two posts, I have been developing a small utility library to do the grunt work of copying data from an [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Extending CopyHelper using Generics &#187; Alteridem Consulting</title>
		<link>http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/comment-page-1/#comment-2146</link>
		<dc:creator>Extending CopyHelper using Generics &#187; Alteridem Consulting</dc:creator>
		<pubDate>Mon, 21 Jul 2008 15:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/#comment-2146</guid>
		<description>[...] Method to Copy Data Between Objects of Different Types     21st Jul, [...]</description>
		<content:encoded><![CDATA[<p>[...] Method to Copy Data Between Objects of Different Types     21st Jul, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Shoemaker</title>
		<link>http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/comment-page-1/#comment-2145</link>
		<dc:creator>Craig Shoemaker</dc:creator>
		<pubDate>Fri, 18 Jul 2008 20:39:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.alteridem.net/2008/07/09/method-to-copy-data-between-objects-of-different-types/#comment-2145</guid>
		<description>&gt; Do you think this is a good idea?
I had to laugh at this question...

I suppose that there *might* be some performance implications involved with using the reflection... but I really like the concept.

We&#039;ll have to see what your code looks like for the 2.0 and 3.5 versions look like. Generics will probably help a lot. 

Perhaps you could provide some performance benchmarks?

Am I missing something or will taking the extension method route force you to implement a CopyTo method for each type, while the &quot;2.0&quot; approach using generics/fluent interface work for all types?</description>
		<content:encoded><![CDATA[<p>&gt; Do you think this is a good idea?<br />
I had to laugh at this question&#8230;</p>
<p>I suppose that there *might* be some performance implications involved with using the reflection&#8230; but I really like the concept.</p>
<p>We&#8217;ll have to see what your code looks like for the 2.0 and 3.5 versions look like. Generics will probably help a lot. </p>
<p>Perhaps you could provide some performance benchmarks?</p>
<p>Am I missing something or will taking the extension method route force you to implement a CopyTo method for each type, while the &#8220;2.0&#8243; approach using generics/fluent interface work for all types?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
