With Entity Framework 6, it was possible to refresh all the context with the method : _myObjectContext.RefreshAsync(RefreshMode.StoreWins, GetAll())
I would like to do the same thing with Entity Framework Core, but I can't find the best way to do that.
So, what's the best way to refresh all the context with EF Core?