Automapper IEnumerable <t> vs projectto <t>

时间:2016-08-22 07:43:35

标签: c# entity-framework automapper

我试着用这个代码块进行集合映射,但它是否正确使用? 这是性能问题吗?

   public static IEnumerable<UserPaymentVM> ToModel(this IEnumerable<UserPayment> entity)
    {
        var mapper = MapperConfig.Instance;

        return mapper.Map<IEnumerable<UserPaymentVM>>(entity);
    }

我如何使用ProjectTo这块?

0 个答案:

没有答案