gpt4 book ai didi

c# - 如何仅使用它们与 Automapper 的接口(interface)来映射两个对象?

转载 作者:太空宇宙 更新时间:2023-11-03 22:44:42 25 4
gpt4 key购买 nike

我试图通过仅使用它们的接口(interface)来映射两个对象,但返回值始终是具有空/空属性的对象:

域接口(interface):

public interface ICustomer
{
int Age { get; }
string Name { get; }
}

DAL接口(interface):

public interface ICustomerEntity
{
int Age { get; }
string Name { get; }
}

我正在尝试使用以下代码映射它们:

class Program
{
static void Main(string[] args)
{
MapperConfig.RegisterMappings();

ICustomer customer1 = new Customer("John", 30);
ICustomer customer2 = new Customer("Mary", 30);

var customerEntity = Mapper.Map<ICustomer, ICustomerEntity>(customer1);
var customerReturned = Mapper.Map<ICustomer>(customerEntity);
}
}

这是我的配置文件:

public class MapperConfig
{
public static void RegisterMappings()
{
Mapper.Initialize(c =>
{
c.AddProfile<DomainToEntitiesMappingProfile>();
c.AddProfile<EntitiesToDomainMappingProfile>();
});
}
}

这些是我的个人资料:

class DomainToEntitiesMappingProfile : Profile
{
protected override void Configure()
{
Mapper.CreateMap<ICustomer, ICustomerEntity>()
.Include<Customer, CustomerEntity>();
}
}

class EntitiesToDomainMappingProfile : Profile
{
protected override void Configure()
{
Mapper.CreateMap<ICustomerEntity, ICustomer>()
.Include<CustomerEntity, Customer>();
}
}

当我尝试映射具体类(删除接口(interface))时,它工作得很好,但我不想将我的映射耦合到具体类。

如何实现?

我在 AutoMapper 6 上尝试过相同的方法,但也没有用。

最佳答案

问题是您的界面缺少任何公共(public) setter :

public interface ICustomer
{
int Age { get; }
string Name { get; }
}

你需要添加它们:

public interface ICustomer
{
int Age { get; set; }
string Name { get; set; }
}

关于c# - 如何仅使用它们与 Automapper 的接口(interface)来映射两个对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50552102/

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