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