Skip to content

[feat] Allow ThenInclude() to work in GetAsync() #63

@ikesnowy

Description

@ikesnowy

Is your feature request related to a problem? Please describe.

Needs a way to use ThenInclude with EFCore in Repository.GetAsync(id, params includes)

Describe the solution you'd like

INavigationRepository.GetAsync(id, blog => blog.Posts, post => post.Tags, blog => blog.Categories);

translates to

IQueryable.Include(b => b.Posts).ThenInclude(p => p.Tags).Include(b => b.Categories);

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions