Slight changes to the entity, more UI work
This commit is contained in:
parent
5656fb2148
commit
9b4a4b8a50
24 changed files with 864 additions and 315 deletions
|
|
@ -283,7 +283,13 @@ public class AutoMapperProfiles : Profile
|
|||
opt.MapFrom(src => src.BookThemeName))
|
||||
.ForMember(dest => dest.BookReaderLayoutMode,
|
||||
opt =>
|
||||
opt.MapFrom(src => src.BookReaderLayoutMode));
|
||||
opt.MapFrom(src => src.BookReaderLayoutMode))
|
||||
.ForMember(dest => dest.SeriesIds,
|
||||
opt =>
|
||||
opt.MapFrom(src => src.Series.Select(s => s.SeriesId).ToList()))
|
||||
.ForMember(dest => dest.LibraryIds,
|
||||
opt =>
|
||||
opt.MapFrom(src => src.Libraries.Select(s => s.LibraryId).ToList()));
|
||||
|
||||
|
||||
CreateMap<AppUserBookmark, BookmarkDto>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue