AspNetCoreLocalization
AspNetCoreLocalization copied to clipboard
Localization.SqlLocalizer & ASP.NET Core MVC Localization Examples
Bumps [jquery-validation](https://github.com/jquery-validation/jquery-validation) from 1.19.3 to 1.19.5. Release notes Sourced from jquery-validation's releases. 1.19.5 / 2022-07-01 Chore Add CodeQL analysis 3d3c1fb Core Fixed jQuery .submit() event shorthand deprecation notice #2430 Fixed...
Bumps [jquery-validation](https://github.com/jquery-validation/jquery-validation) from 1.19.3 to 1.19.5. Release notes Sourced from jquery-validation's releases. 1.19.5 / 2022-07-01 Chore Add CodeQL analysis 3d3c1fb Core Fixed jQuery .submit() event shorthand deprecation notice #2430 Fixed...
Hi, We were trying to update our app to net6.0 and noticed that due to our app having EF 6.0 and your package beeing on 5.0 it causes an error...
It would be a better approach to utilize the built in `IMemoryCache` infrastructure for caching. Also, it would be much better to add support for `IDistributedCache` opt-in.
Hi, Could you point me to a sample that uses an Azure SQL Server or show me the difference to the SQLite example from your tutorial? Thanks, Eric
I'm using ASP.NET Core 2 together with this adaptation of AspNetCoreLocalization. I'm however a bit 'stuck' on resetting the cache for my data annotation translations. When I reset the cache,...
It seems that second version of _localizer["Thing {jep}", jep] is not using arguments at all. https://github.com/damienbod/AspNetCoreLocalization/blob/master/src/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizer.cs#L36 Is there something I need to know about C# or is this just in...
https://github.com/damienbod/AspNetCoreLocalization/blob/a362dc73be13cdfb2ee83bd1a8fa9b440ea00e74/src/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizer.cs#L41 parameters work as follows ``` using System.Linq; public LocalizedString this[string name, params object[] arguments] { get { var localizedString = this[name]; return new LocalizedString(name, String.Format(localizedString.Value, arguments.Select(x => x.ToString()).ToArray()), localizedString.ResourceNotFound);...
Hello there ! Is there any plans to support database-per-tenant for LocalizationModelContext ? Thanks in advance !
I have two question. In the production, 1. What is the correct way to delete all your data for a culture? 2. What is the right way to add new...