damienbod / AspNetCoreLocalization

Localization.SqlLocalizer & ASP.NET Core MVC Localization Examples
http://damienbod.com/2015/10/21/asp-net-5-mvc-6-localization/
MIT License
251 stars 101 forks source link

Added locks in order to protect against more than one thread reading/… #54

Closed pallotta closed 6 years ago

pallotta commented 6 years ago

…writing _context at a time. According to EF Core devs, we should assume DbContext is not thread safe. These changes appear to fix intermittent issues we were having with SqlLocalizer generating DbContext concurrency exceptions when the _resourceLocalizations cache is first loaded after an application/IIS restart.

damienbod commented 6 years ago

@pallotta Thanks!

I do some testing and create a new package.

Greetings Damien