AutoMapper Map()返回错误的值

时间:2015-12-22 16:36:25

标签: c# automapper

我有一个类MyClass到同一个类MyClass的映射。

该类中包含List<T>属性。 List<T>在地图之前为NULL。

使用 AutoMapper 映射后,List<T>不再为NULL。 (AllowNullDestinationValues在这里什么都不做......)

这是故意还是错误?我错过了一些配置步骤吗?

using System.Collections.Generic;
using System.Diagnostics;
using AutoMapper;

namespace ConsoleApplication1
{
    public class MyClass
    {
        public string Label { get; set; }

        public List<int> Numbers { get; set; }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Mapper.CreateMap<MyClass, MyClass>();
            MyClass obj1 = new MyClass { Label = "AutoMapper Test" };
            MyClass obj2 = new MyClass();
            Mapper.Map(obj1, obj2);

            Debug.Assert(obj2 != null && obj2.Numbers == null, "FAILED");
        }
    }
}

我使用NuGet的AutoMapper v4.1.1。

1 个答案:

答案 0 :(得分:2)

默认情况下,AutoMapper会将空集合映射到空集合。您可以通过创建自己的AutoMapper配置文件进行配置来修改它。

看看下面的代码。

public class MyClass
{
    public string Label { get; set; }

    public List<int> Numbers { get; set; }
}
class Program
{
    static void Main(string[] args)
    {
        Mapper.AddProfile<MyProfile>(); // add the profile
        MyClass obj1 = new MyClass { Label = "AutoMapper Test" };
        MyClass obj2 = new MyClass();
        Mapper.Map(obj1, obj2);

        Debug.Assert(obj2 != null && obj2.Numbers == null, "FAILED");
    }
}

public class MyProfile : Profile
{
    protected override void Configure()
    {
        AllowNullCollections = true;
        CreateMap<MyClass, MyClass>();
        // add other maps here.
    }
}