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
When using the cutting edge development version that has included the ability to use EPPlus instead of GemBox for spreadsheet access, there is a performance problem when loading Entity Translations.
When loading translations for entities, it goes exponentially slower the more entities you have in the worksheet. I think there is a mis-placed closing brace which is causing ALL of the entity translations to be loaded for EVERY LINE of the spreadsheet.
The code file is EntityTranslation.cs and the offending closing brace is on line 200. I think it needs to be moved about 7 lines upwards so that the translations are only loaded once, when they have all been loaded out of the spreadsheet.
p.s. Thanks for implementing EPPlus in the first place. Without it we would not even have been able to build the code and run it.
The text was updated successfully, but these errors were encountered:
When using the cutting edge development version that has included the ability to use EPPlus instead of GemBox for spreadsheet access, there is a performance problem when loading Entity Translations.
When loading translations for entities, it goes exponentially slower the more entities you have in the worksheet. I think there is a mis-placed closing brace which is causing ALL of the entity translations to be loaded for EVERY LINE of the spreadsheet.
The code file is EntityTranslation.cs and the offending closing brace is on line 200. I think it needs to be moved about 7 lines upwards so that the translations are only loaded once, when they have all been loaded out of the spreadsheet.
p.s. Thanks for implementing EPPlus in the first place. Without it we would not even have been able to build the code and run it.
The text was updated successfully, but these errors were encountered: