last ...
This commit is contained in:
@@ -72,11 +72,13 @@ namespace xDataService.Providers
|
||||
// Entity To Dto ...
|
||||
cfg.CreateMap<TEntity, TDto>()
|
||||
.ForMember(dest => dest.Deleted, opt => opt.Ignore());
|
||||
cfg.CreateMap<XQueryResult<TEntity>, XQueryResult<TDto>>();
|
||||
|
||||
//
|
||||
// Dto to Entity ...
|
||||
cfg.CreateMap<TDto, TEntity>()
|
||||
.ForMember(dest => dest.Deleted, opt => opt.Ignore());
|
||||
cfg.CreateMap<XQueryResult<TDto>, XQueryResult<TEntity>>();
|
||||
|
||||
//
|
||||
// Add Provided Profiles if Provided ...
|
||||
|
||||
Reference in New Issue
Block a user