This commit is contained in:
2026-05-15 19:42:02 +03:30
parent 2c2fcb32ad
commit a7d63ea09d
+2
View File
@@ -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 ...