Himall商城ShopProfile

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoMapper;

namespace Himall.Application.Mappers.Profiles
{
    public class ShopProfile : Profile
    {
        protected override void Configure()
        {
            base.Configure();

            CreateMap();
            CreateMap();

            CreateMap();
            CreateMap();

            CreateMap();
            CreateMap();

            CreateMap();
            CreateMap();

            CreateMap();
            CreateMap();

            CreateMap().ForMember(p => p.ShopAccountType, options => options.MapFrom(p => p.TradeType));
            CreateMap().ForMember(p => p.TradeType, options => options.MapFrom(p => p.ShopAccountType));

            CreateMap();
            CreateMap();

            CreateMap();
            CreateMap();
        }
    }
}

你可能感兴趣的:(c#,ui,linq)