CZMapper.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace CZFW.Core.Mapper
  5. {
  6. public class CZMapper
  7. {
  8. public static (TTarget target, bool hasError) Map<TSource, TTarget>(TSource source)
  9. {
  10. var sourceType = typeof(TSource);
  11. var sourceProperties = sourceType.GetProperties();
  12. var targetType = typeof(TTarget);
  13. var targetProperties = targetType.GetProperties();
  14. var res = Activator.CreateInstance<TTarget>();
  15. var hasError = false;
  16. foreach (var item in targetProperties)
  17. {
  18. foreach (var sitem in sourceProperties)
  19. {
  20. if (item.Name == sitem.Name && item.PropertyType == sitem.PropertyType)
  21. {
  22. try
  23. {
  24. item.SetValue(res, sitem.GetValue(source));
  25. }
  26. catch (Exception err)
  27. {
  28. hasError = true;
  29. }
  30. }
  31. }
  32. }
  33. return (res, hasError);
  34. }
  35. public static (IList<TTarget> targets, bool hasError) Map<TSource, TTarget>(IList<TSource> source)
  36. {
  37. var res = new List<(TTarget, bool)>();
  38. foreach (var item in source)
  39. {
  40. var tp = Map<TSource, TTarget>(item);
  41. res.Add(tp);
  42. }
  43. var hasError = res.Count(x => x.Item2) > 0;
  44. return (res.Select(x => x.Item1).ToList(), hasError);
  45. }
  46. public static (TEntity result, bool hasError) UpdateEntity<TEntity>(TEntity fromObj, TEntity toObj, bool updateDefaultValue = false)
  47. {
  48. var properties = typeof(TEntity).GetProperties();
  49. foreach (var p in properties)
  50. {
  51. var fromValue = p.GetValue(fromObj);
  52. var toValue = p.GetValue(toObj);
  53. if (fromValue != toValue)
  54. {
  55. if (!updateDefaultValue)
  56. {
  57. var defVal = DefaultForType(p.PropertyType);
  58. if (fromValue != defVal)
  59. {
  60. p.SetValue(toObj, fromValue);
  61. }
  62. }
  63. else
  64. {
  65. p.SetValue(toObj, fromValue);
  66. }
  67. }
  68. }
  69. return (toObj, false);
  70. }
  71. static TType GetDefault<TType>()
  72. {
  73. return default(TType);
  74. }
  75. public static object DefaultForType(Type targetType)
  76. {
  77. return targetType.IsValueType ? Activator.CreateInstance(targetType) : null;
  78. }
  79. }
  80. }