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
An attempt to improve performance was commited in the last version by caching FindNavigationPropertyBindings.FindNavigationPropertyBindings. Unfortunately instead of caching the materialized list of results the enumerable was cached resulting in even more performance degradation.
This fix is to simple add .ToList() on the enumerable.
The text was updated successfully, but these errors were encountered:
odata.net/src/Microsoft.OData.Edm/Csdl/Semantics/CsdlSemanticsNavigationSource.cs
Line 137 in acf4f43
An attempt to improve performance was commited in the last version by caching FindNavigationPropertyBindings.FindNavigationPropertyBindings. Unfortunately instead of caching the materialized list of results the enumerable was cached resulting in even more performance degradation.
This fix is to simple add .ToList() on the enumerable.
The text was updated successfully, but these errors were encountered: