Good Morning,
I have what I think is a simple question.
I have a collection of entities that are already created. However, I need to do some sort of a refresh on this collection from the database. I can (and do) use the RefreshEntitiesAsync() function. However, when I refresh the entities, I need to add an 'Include' to include two more navigation entity properties that were not in the original entities. Ordinarily, if I were doing a query, I'd simply use the Include("XXX") path, but I don't see where refresh lets me do that.
Can anyone offer a suggestion?