AutoMapper 사용 노트
3369 단어 mapper
Mapper.CreateMap<SourceType, DestinationType>()
.ForMember(dest=> dest.Property, opt => opt.MapFrom(src => src.OtherProperty))
.ForMember(dest => dest.IgnoreProperty, opt => opt.Ignore());
그리고 이 지 도 를 사용 할 수 있 습 니 다:
DestinationType dest = Mapper.Map<SourceType, DestinationType>(source);
public static IMappingExpression<TSource, TDestination> IgnoreAllNonExisting<TSource, TDestination>
(this IMappingExpression<TSource, TDestination> expression)
{
const BindingFlags flags = BindingFlags.Public | BindingFlags.Instance;
var sourceType = typeof (TSource);
var destinationProperties = typeof (TDestination).GetProperties(flags);
foreach (var property in destinationProperties)
{
if (sourceType.GetProperty(property.Name, flags) == null)
{
expression.ForMember(property.Name, opt => opt.Ignore());
}
}
return expression;
}
사용 방법:
Mapper.CreateMap<SourceType, DestinationType>().IgnoreAllNonExisting()
.ForMember(prop => x.Property, opt => opt.MapFrom(src => src.OtherProperty));
개정:InnoreAll NonExisting 이라는 확장 방법 은 ForMember 이후 에 두 지 않 는 것 이 좋 습 니 다.ForMember 는 주로 이름 이 다른 속성 을 수 동 으로 매 핑 하 는 데 사용 되 기 때문에 매 핑 을 한 후에 IgnoreAll 을 추가 하 는 것 이 좋 습 니 다.
Mapper.Map<Source, Destination>(source, destination);
Mapper.CreateMap<SourceType, DestinationType>();
List<Destination> destList = Mapper.Map<List<Source>, List<Destination>(sourceList);
public static class MapperExtensions
{
// Company
public static Company ToEntity(this CompanyViewModel model)
{
return Mapper.Map<CompanyViewModel, Company>(model);
}
public static Company ToEntity(this CompanyViewModel model, Company entity)
{
return Mapper.Map(model, entity);
}
public static CompanyViewModel ToModel(this Company entity)
{
return Mapper.Map<Company, CompanyViewModel>(entity);
}
public static List<CompanyViewModel> ToModelList(this List<Company> entities)
{
return Mapper.Map<List<Company>, List<CompanyViewModel>>(entities);
}
}
호출 방식:
var model = entity.ToModel();
var entity = model.ToEntity();
var entity = model.ToEntity(entity);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단한 AutoMapper를 사용한 DTO 변환DTO(Data Transfer Object) 데이터 전송 대상은 데이터만 전송하고 영역 대상과의 전환을 완성하며 영역 업무 처리를 포함하지 않는다.DTO는 영역 모델 설계자가 핵심 업무에만 집중하고 영역 모델의 정...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.