在为其分配空值时,以字节数据类型获取不适当的值

时间:2015-06-27 04:36:44

标签: c# byte automapper

当将字节值绑定为null 时,我在自动映射器中遇到问题。

这是我的变量:

lo_export

数据库表

public byte[] Intern { get; set; } //source 

 public byte[] Intern { get; set; } //Destination.

这就是我的映射方式:

Intern Varbinary max

现在在这个实习生字段中,当条件为空时,我得到这样的值:

 .ForMember(s => s.Intern , opts => opts.MapFrom(src => src.Intern ==null ? null : src.Intern ))

因此,在Intern字段的数据库中,它存储如 ox ,但我想存储 null

有人可以告诉我如何使用automapper吗?

0 个答案:

没有答案