自动映射和数据库或服务查找

时间:2017-05-17 18:40:20

标签: c# mapping automapper

我将一个模型传递给一个动作方法。

class CustomerFront
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string CustomerType { get; set; }
    //snip...
}

一个例子是{"FirstName": "John", "LastName": "Smith", "CustomerType": "Corporate" }

具有相似形状的域对象 -

class CustomerBack
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public int CustomerType { get; set; } // Note this is an int
    //snip...
}

Automapper可以轻松映射FirstName和LastName。

但我需要执行网络服务调用传递CustomerFront.CustomerType,以找出int的{​​{1}}值。

这样做的最佳方式是什么?

0 个答案:

没有答案