Generic extension method for automapper

2019-02-18 00:52发布

public abstract class Entity : IEntity
{
    [Key]
    public virtual int Id { get; set; }
}

public class City:Entity
{
    public string Code { get; set; }
}

public class BaseViewModel:IBaseViewModel
{
    public int Id { get; set; }
}

public class CityModel:BaseViewModel
{
    public string Code { get; set; }
}

my domain and view classes...

and

for mapping extension

public static TModel ToModel<TModel,TEntity>(this TEntity entity)
    where TModel:IBaseViewModel where TEntity:IEntity
{
    return Mapper.Map<TEntity, TModel>(entity);
}

and i am using like below

City city = GetCity(Id);
CityModel model = f.ToModel<CityModel, City>();

but its long

can i write it like below?

City city = GetCity(Id);
CityModel model = f.ToModel();

is that possible?

3条回答
爷的心禁止访问
2楼-- · 2019-02-18 01:30

Put the extension method on IEntity as a member method. Then you have to pass only one type.

查看更多
叛逆
3楼-- · 2019-02-18 01:36

Instead of jumping through all of those hoops, why not just use:

public static TDestination ToModel<TDestination>(this object source)
{
    return Mapper.Map<TDestination>(source);
}
查看更多
The star\"
4楼-- · 2019-02-18 01:41

No because the 1st generic argument can't be implicitly inferred.

I would do this

    public static TModel ToModel<TModel>(this IEntity entity) where TModel:IBaseViewModel
    {
        return (TModel)Mapper.Map(entity, entity.GetType(), typeof(TModel));
    }

Then the code is still shorted than it was:

var city = GetCity(Id);
var model = city.ToModel<CityModel>();
查看更多
登录 后发表回答