In EF6 we could do the following:
context.Set<TEntity>().Attach(entity); context.Entry(entity).Collection("NavigationProperty").Load(); Since EF Core is going "100% strictly typed", they have removed the Collection function. What should we use instead?
How do I load navigation properties for an ATTACHED entity? That is, do I have a way to invoke something like .Include() and .ThenInclude(), on an entity I have already retrieved?