gpt4 book ai didi

c# - 中等信任托管的 AutoMapper 替代品

转载 作者:行者123 更新时间:2023-11-30 16:27:30 28 4
gpt4 key购买 nike

我正在使用 AutoMapper 在我的域模型和 View 模型之间进行映射。我的虚拟主机仅支持中等信任度,因此 AutoMapper 无法运行。对于像 AutoMapper 这样可以以中等信任度运行的优秀映射器,是否还有其他建议?

我无法访问主机上的 IIS。

最佳答案

如果您的模型使用同名属性,您可以像这样开发一个简单的映射器:

public static class Mapper {

/// <summary>
/// Copy all not null properties values of object source in object target if the properties are present.
/// Use this method to copy only simple type properties, not collections.
/// </summary>
/// <param name="source">source object</param>
/// <param name="target">target object</param>
private static void SimpleCopy(object source, object target)
{
foreach (PropertyInfo pi in source.GetType().GetProperties())
{
object propValue = pi.GetGetMethod().Invoke(source, null);
if (propValue != null)
{
try
{
PropertyInfo pit = GetTargetProperty(pi.Name, target);
if (pit != null) pit.GetSetMethod().Invoke(target, new object[] { propValue });
}
catch (Exception) { /* do nothing */ }
}
}
}

private static PropertyInfo GetTargetProperty(string name, object target)
{
foreach (PropertyInfo pi in target.GetType().GetProperties())
{
if (pi.Name.Equals(name, StringComparison.CurrentCultureIgnoreCase)) return pi;
}
return null;
}


}

关于c# - 中等信任托管的 AutoMapper 替代品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7871578/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com