The GetAll
and Get
methods of the ready-made CrudAppService
don't include child entities.
Is it possible to modify its behaviour?
Update
GetAllIncluding
has some problem if the included entity has a navigation property to the parent; it falls into a sort of circular dependency. Is there any Attribute
or trick to exclude the navigation property from the serialization? The [NonSerialized]
attribute does not seem to be applicable to a navigation property.
PostAppService:
public class PostAppService : CrudAppService<Post, PostDto>, IPostAppService
{
IRepository<Post> _repository = null;
public PostAppService(IRepository<Post> repository) : base(repository)
{
_repository = repository;
}
protected override IQueryable<Post> CreateFilteredQuery(PagedAndSortedResultRequestDto input)
{
return _repository.GetAllIncluding(p => p.Items);
}
}
PostDto:
[AutoMap(typeof(Post))]
public class PostDto : EntityDto
{
public ICollection<Item> Items { get; set; }
}
Post entity:
[Table("AbpPosts")]
public class Post : FullAuditedEntity<int,User>
{
public virtual ICollection<Item> Items { get; set; }
}
Item entity:
[Table("AbpItems")]
public class Item : Entity
{
[ForeignKey("PostId")]
public Post Post { get; set; }
public int PostId { get; set; }
}