代码示例:Update(sourceObject、targetObject、string[] 例外)

发布于 2024-10-06 22:29:01 字数 119 浏览 4 评论 0原文

我想要一个通用更新方法,它将 sourceObject 的所有属性复制到 targetObject,但不复制 exceptions 中提到的方法。

I want a generic update method which copies all properties of sourceObject to targetObject but not methods mentioned in exceptions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情独悲 2024-10-13 22:29:01

您是否尝试过使用AutoMapper?它允许您定义自定义映射以及自动映射。

--edit--

示例:

给定以下类型:

public class Type1
{
    public int MyProperty1 { get; set; }
    public int MyProperty2 { get; set; }
    public int MyProperty3 { get; set; }
    public int MyProperty4 { get; set; }
    public int MyProperty5 { get; set; }
}

public class Type2
{
    public int MyProperty1 { get; set; }
    public int MyProperty2 { get; set; }
    public int MyProperty3 { get; set; }
    public int MyProperty7 { get; set; }
    public int MyProperty8 { get; set; }
}

创建一个忽略 2 个属性(MyProperty7 和 MyProperty8)的映射:

var map = Mapper.CreateMap<Type1, Type2>().
            ForMember(dest => dest.MyProperty7, opt => opt.Ignore()).
            ForMember(dest => dest.MyProperty8, opt => opt.Ignore());

最后复制:

Type2 type2Variable = Mapper.Map<Type1, Type2>(type1Variable);

--edit2--

映射相同类型示例:

var map = Mapper.CreateMap<Type1, Type1>().
            ForMember(dest => dest.MyProperty4, opt => opt.Ignore()).
            ForMember(dest => dest.MyProperty5, opt => opt.Ignore());

使用:

Type1 anotherType1Variable = Mapper.Map<Type1, Type1>(type1Variable);

Have you tried using AutoMapper? It allows you to define custom mapping as well as auto mapping.

--edit--

Example:

Given following types:

public class Type1
{
    public int MyProperty1 { get; set; }
    public int MyProperty2 { get; set; }
    public int MyProperty3 { get; set; }
    public int MyProperty4 { get; set; }
    public int MyProperty5 { get; set; }
}

public class Type2
{
    public int MyProperty1 { get; set; }
    public int MyProperty2 { get; set; }
    public int MyProperty3 { get; set; }
    public int MyProperty7 { get; set; }
    public int MyProperty8 { get; set; }
}

To create a map which ignores 2 properties (MyProperty7 & MyProperty8):

var map = Mapper.CreateMap<Type1, Type2>().
            ForMember(dest => dest.MyProperty7, opt => opt.Ignore()).
            ForMember(dest => dest.MyProperty8, opt => opt.Ignore());

Finally copy:

Type2 type2Variable = Mapper.Map<Type1, Type2>(type1Variable);

--edit2--

Mapping same types example:

var map = Mapper.CreateMap<Type1, Type1>().
            ForMember(dest => dest.MyProperty4, opt => opt.Ignore()).
            ForMember(dest => dest.MyProperty5, opt => opt.Ignore());

use:

Type1 anotherType1Variable = Mapper.Map<Type1, Type1>(type1Variable);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文