12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace CZFW.Core.Mapper
- {
- public class CZMapper
- {
- public static (TTarget target, bool hasError) Map<TSource, TTarget>(TSource source)
- {
- var sourceType = typeof(TSource);
- var sourceProperties = sourceType.GetProperties();
- var targetType = typeof(TTarget);
- var targetProperties = targetType.GetProperties();
- var res = Activator.CreateInstance<TTarget>();
- var hasError = false;
- foreach (var item in targetProperties)
- {
- foreach (var sitem in sourceProperties)
- {
- if (item.Name == sitem.Name && item.PropertyType == sitem.PropertyType)
- {
- try
- {
- item.SetValue(res, sitem.GetValue(source));
- }
- catch (Exception err)
- {
- hasError = true;
- }
- }
- }
- }
- return (res, hasError);
- }
- public static (IList<TTarget> targets, bool hasError) Map<TSource, TTarget>(IList<TSource> source)
- {
- var res = new List<(TTarget, bool)>();
- foreach (var item in source)
- {
- var tp = Map<TSource, TTarget>(item);
- res.Add(tp);
- }
- var hasError = res.Count(x => x.Item2) > 0;
- return (res.Select(x => x.Item1).ToList(), hasError);
- }
- public static (TEntity result, bool hasError) UpdateEntity<TEntity>(TEntity fromObj, TEntity toObj, bool updateDefaultValue = false)
- {
- var properties = typeof(TEntity).GetProperties();
- foreach (var p in properties)
- {
- var fromValue = p.GetValue(fromObj);
- var toValue = p.GetValue(toObj);
- if (fromValue != toValue)
- {
- if (!updateDefaultValue)
- {
- var defVal = DefaultForType(p.PropertyType);
- if (fromValue != defVal)
- {
- p.SetValue(toObj, fromValue);
- }
- }
- else
- {
- p.SetValue(toObj, fromValue);
- }
- }
- }
- return (toObj, false);
- }
- static TType GetDefault<TType>()
- {
- return default(TType);
- }
- public static object DefaultForType(Type targetType)
- {
- return targetType.IsValueType ? Activator.CreateInstance(targetType) : null;
- }
- }
- }
|