A Simple C# entity to model property mapper.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Melvicorp.Data
{
public static class SimpleMapper
{
public static void PropertyMap<T, U>(T source, U destination)
where T : class, new()
where U : class, new()
{
List<PropertyInfo> sourceProperties = source.GetType().GetProperties().ToList<PropertyInfo>();
List<PropertyInfo> destinationProperties = destination.GetType().GetProperties().ToList<PropertyInfo>();
foreach (PropertyInfo sourceProperty in sourceProperties)
{
PropertyInfo destinationProperty = destinationProperties.Find(item => item.Name == sourceProperty.Name);
if (destinationProperty != null)
{
destinationProperty.SetValue(destination, sourceProperty.GetValue(source, null), null);
}
}
}
}
}