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; }
}
我的域名和视图类...
和
用于映射扩展
public static TModel ToModel<TModel,TEntity>(this TEntity entity)
where TModel:IBaseViewModel where TEntity:IEntity
{
return Mapper.Map<TEntity, TModel>(entity);
}
我正在使用如下
City city = GetCity(Id);
CityModel model = f.ToModel<CityModel, City>();
但很长
我可以像下面这样写吗?
City city = GetCity(Id);
CityModel model = f.ToModel();
可能吗?
答案 0 :(得分:15)
为什么不使用:
而不是跳过所有这些箍public static TDestination ToModel<TDestination>(this object source)
{
return Mapper.Map<TDestination>(source);
}
答案 1 :(得分:4)
否,因为无法隐式推断出第一个通用参数。
我会这样做
public static TModel ToModel<TModel>(this IEntity entity) where TModel:IBaseViewModel
{
return (TModel)Mapper.Map(entity, entity.GetType(), typeof(TModel));
}
然后代码仍然短于:
var city = GetCity(Id);
var model = city.ToModel<CityModel>();
答案 2 :(得分:0)
将扩展方法作为成员方法放在IEntity
上。然后你必须只传递一种类型。