Posts

Showing posts from August, 2011

Copy all public properties from an object to another object

I often ran into situation where I need to copy all the value of an object into another object, this normally happen in ORM related project where you need the value to be copy from an entity to an entity retrived from db (ActiveRecord) kind of entity, so I created a simple extension method to facilitate this action. /// /// Copy the speficied public properties from source to target. /// /// Type of object. /// Target object to copy to./// Source object to copy from./// Target object with each public properties copied from source object. public static T CopyFrom (this T target, object source) { var sourceObjType = source.GetType(); //loop through each public properties in the type foreach (var targetProperty in target.GetType().GetProperties()) { var sourceProperty = sourceObjType.GetProperty(targetProperty.Name); if (sourceProperty != null) // match found { // check types and take care of Nullable type. var sourceType = Nullable.GetUnderlyingType(sourceProp