The GetAll and Get methods of the ready-made CrudAppService don\'t include child entities.
GetAll
Get
CrudAppService
Is it possible to modify its behavi
In Abp.io All You Need Is (that must be added to PostService inherited from CrudAppService ):
protected override IQueryable CreateFilteredQuery(PagedAndSortedResultRequestDto input) { return _postReposiory .Include(p => p.Item); }