How to copy value from class X to class Y with the same property name in c#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:37:30Z http://stackoverflow.com/feeds/question/531505 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/531505/how-to-copy-value-from-class-x-to-class-y-with-the-same-property-name-in-c 5 How to copy value from class X to class Y with the same property name in c#? Samnang 2009-02-10T08:40:21Z 2009-02-10T09:37:46Z <p>Suppose I have two classes:</p> <pre><code>public class Student { public int Id {get; set;} public string Name {get; set;} public IList&lt;Course&gt; Courses{ get; set;} } public class StudentDTO { public int Id {get; set;} public string Name {get; set;} public IList&lt;CourseDTO&gt; Courses{ get; set;} } </code></pre> <p>I would like to copy value from Student class to StudentDTO class:</p> <pre><code>var student = new Student(); StudentDTO studentDTO = student; </code></pre> <p>How can I do that by reflection or other solution?</p> http://stackoverflow.com/questions/531505/how-to-copy-value-from-class-x-to-class-y-with-the-same-property-name-in-c/531507#531507 5 Answer by Marc Gravell for How to copy value from class X to class Y with the same property name in c#? Marc Gravell 2009-02-10T08:42:18Z 2009-02-10T08:54:37Z <p>The lists make it tricky... my earlier reply (below) only applies to like-for-like properties (not the lists). I suspect you might just have to write and maintain code:</p> <pre><code> Student foo = new Student { Id = 1, Name = "a", Courses = { new Course { Key = 2}, new Course { Key = 3}, } }; StudentDTO dto = new StudentDTO { Id = foo.Id, Name = foo.Name, }; foreach (var course in foo.Courses) { dto.Courses.Add(new CourseDTO { Key = course.Key }); } </code></pre> <p><hr /></p> <p>edit; only applies to <strong>shallow</strong> copies - not lists</p> <p>Reflection is an option, but slow. In 3.5 you can build this into a compiled bit of code with <code>Expression</code>. Jon Skeet has a pre-rolled sample of this in <a href="http://www.yoda.arachsys.com/csharp/miscutil/" rel="nofollow">MiscUtil</a> - just use as:</p> <pre><code>Student source = ... StudentDTO item = PropertyCopy&lt;StudentDTO&gt;.CopyFrom(student); </code></pre> <p>Because this uses a compiled <code>Expression</code> it will vastly out-perform reflection.</p> <p>If you don't have 3.5, then use reflection or ComponentModel. If you use ComponentModel, you can at least use <a href="http://www.codeproject.com/KB/cs/HyperPropertyDescriptor.aspx" rel="nofollow"><code>HyperDescriptor</code></a> to get it <em>nearly</em> as quick as <code>Expression</code></p> <pre><code>Student source = ... StudentDTO item = new StudentDTO(); PropertyDescriptorCollection sourceProps = TypeDescriptor.GetProperties(student), destProps = TypeDescriptor.GetProperties(item), foreach(PropertyDescriptor prop in sourceProps) { PropertyDescriptor destProp = destProps[prop.Name]; if(destProp != null) destProp.SetValue(item, prop.GetValue(student)); } </code></pre> http://stackoverflow.com/questions/531505/how-to-copy-value-from-class-x-to-class-y-with-the-same-property-name-in-c/531625#531625 2 Answer by Kuldip Saini for How to copy value from class X to class Y with the same property name in c#? Kuldip Saini 2009-02-10T09:23:28Z 2009-02-10T09:23:28Z <p>Write a implicit operator in anyone class</p> <p>public static implicit operator StudentDTO(Student student) {</p> <pre><code> //use skeet's library return PropertyCopy&lt;StudentDTO&gt;.CopyFrom(student); } </code></pre> <p>now you can do that</p> <p>StudentDTO studentDTO = student;</p> http://stackoverflow.com/questions/531505/how-to-copy-value-from-class-x-to-class-y-with-the-same-property-name-in-c/531671#531671 3 Answer by AboutDev for How to copy value from class X to class Y with the same property name in c#? AboutDev 2009-02-10T09:37:46Z 2009-02-10T09:37:46Z <p>Ok I just looked up the <a href="http://www.yoda.arachsys.com/csharp/miscutil/" rel="nofollow">MiscUtil</a> that Marc posted about and its just awesome. I hope mark doesn't mind me adding the code here.</p> <pre><code>using System; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.Linq; using System.Text; using System.Reflection; using System.ComponentModel; using System.Linq.Expressions; namespace ConsoleApplication1 { class Program { public class Student { public int Id { get; set; } public string Name { get; set; } public IList&lt;int&gt; Courses { get; set; } public static implicit operator Student(StudentDTO studentDTO) { return PropertyCopy&lt;Student&gt;.CopyFrom(studentDTO); } } public class StudentDTO { public int Id { get; set; } public string Name { get; set; } public IList&lt;int&gt; Courses { get; set; } public static implicit operator StudentDTO(Student student) { return PropertyCopy&lt;StudentDTO&gt;.CopyFrom(student); } } static void Main(string[] args) { Student _student = new Student(); _student.Id = 1; _student.Name = "Timmmmmmmmaaaahhhh"; _student.Courses = new List&lt;int&gt;(); _student.Courses.Add(101); _student.Courses.Add(121); StudentDTO itemT = _student; Console.WriteLine(itemT.Id); Console.WriteLine(itemT.Name); Console.WriteLine(itemT.Courses.Count); } } // COOLEST PIECE OF CODE FROM - http://www.yoda.arachsys.com/csharp/miscutil/ /// &lt;summary&gt; /// Generic class which copies to its target type from a source /// type specified in the Copy method. The types are specified /// separately to take advantage of type inference on generic /// method arguments. /// &lt;/summary&gt; public class PropertyCopy&lt;TTarget&gt; where TTarget : class, new() { /// &lt;summary&gt; /// Copies all readable properties from the source to a new instance /// of TTarget. /// &lt;/summary&gt; public static TTarget CopyFrom&lt;TSource&gt;(TSource source) where TSource : class { return PropertyCopier&lt;TSource&gt;.Copy(source); } /// &lt;summary&gt; /// Static class to efficiently store the compiled delegate which can /// do the copying. We need a bit of work to ensure that exceptions are /// appropriately propagated, as the exception is generated at type initialization /// time, but we wish it to be thrown as an ArgumentException. /// &lt;/summary&gt; private static class PropertyCopier&lt;TSource&gt; where TSource : class { private static readonly Func&lt;TSource, TTarget&gt; copier; private static readonly Exception initializationException; internal static TTarget Copy(TSource source) { if (initializationException != null) { throw initializationException; } if (source == null) { throw new ArgumentNullException("source"); } return copier(source); } static PropertyCopier() { try { copier = BuildCopier(); initializationException = null; } catch (Exception e) { copier = null; initializationException = e; } } private static Func&lt;TSource, TTarget&gt; BuildCopier() { ParameterExpression sourceParameter = Expression.Parameter(typeof(TSource), "source"); var bindings = new List&lt;MemberBinding&gt;(); foreach (PropertyInfo sourceProperty in typeof(TSource).GetProperties()) { if (!sourceProperty.CanRead) { continue; } PropertyInfo targetProperty = typeof(TTarget).GetProperty(sourceProperty.Name); if (targetProperty == null) { throw new ArgumentException("Property " + sourceProperty.Name + " is not present and accessible in " + typeof(TTarget).FullName); } if (!targetProperty.CanWrite) { throw new ArgumentException("Property " + sourceProperty.Name + " is not writable in " + typeof(TTarget).FullName); } if (!targetProperty.PropertyType.IsAssignableFrom(sourceProperty.PropertyType)) { throw new ArgumentException("Property " + sourceProperty.Name + " has an incompatible type in " + typeof(TTarget).FullName); } bindings.Add(Expression.Bind(targetProperty, Expression.Property(sourceParameter, sourceProperty))); } Expression initializer = Expression.MemberInit(Expression.New(typeof(TTarget)), bindings); return Expression.Lambda&lt;Func&lt;TSource,TTarget&gt;&gt;(initializer, sourceParameter).Compile(); } } } } </code></pre>