You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.NET Core 3.0 added the possibility to safely remove entries from Dictionary while enumerating (dotnet/coreclr#18854). We may have places where we copy defensively because this scenario was not previously supported - we may be able to remove these copies for better perf.
The text was updated successfully, but these errors were encountered:
@michalczerwinski I think this is in TableSharingConcurrencyTokenConvention.cs, not RemoveDerivedEntityTypes.cs, no?
Yes, this does seem like a candidate for simplification/optimization. Note that it's only possible to reliably do this where we're handling a concrete Dictionary (as opposed to IDictionary).
.NET Core 3.0 added the possibility to safely remove entries from Dictionary while enumerating (dotnet/coreclr#18854). We may have places where we copy defensively because this scenario was not previously supported - we may be able to remove these copies for better perf.
The text was updated successfully, but these errors were encountered: