![]() |
VOOZH | about |
dotnet add package LocalizationProvider.Storage.SqlServer --version 8.2.2
NuGet\Install-Package LocalizationProvider.Storage.SqlServer -Version 8.2.2
<PackageReference Include="LocalizationProvider.Storage.SqlServer" Version="8.2.2" />
<PackageVersion Include="LocalizationProvider.Storage.SqlServer" Version="8.2.2" />Directory.Packages.props
<PackageReference Include="LocalizationProvider.Storage.SqlServer" />Project file
paket add LocalizationProvider.Storage.SqlServer --version 8.2.2
#r "nuget: LocalizationProvider.Storage.SqlServer, 8.2.2"
#:package LocalizationProvider.Storage.SqlServer@8.2.2
#addin nuget:?package=LocalizationProvider.Storage.SqlServer&version=8.2.2Install as a Cake Addin
#tool nuget:?package=LocalizationProvider.Storage.SqlServer&version=8.2.2Install as a Cake Tool
If you find this library useful, cup of coffee would be awesome! You can support further development of the library via Paypal.
I'm pleased to announce that Localization Provider v8.0 is finally out. Again - took a bit longer than expected 😃
What's new?
ConfigurationContext now supports config configuration as well (you can change some settings after you have added and configured default settings for localization provider). This is very useful in unit test scenarios when you need to adjust some settings for specific test.More info in this blog post.
LocalizationProvider project is ASP.NET Mvc web application localization provider on steroids.
Giving you the main following features:
Below are code fragments that are essential to get started with a localization provider.
Install required packages:
> dotnet add package LocalizationProvider.AspNetCore
> dotnet add package LocalizationProvider.AdminUI.AspNetCore
> dotnet add package LocalizationProvider.Storage.SqlServer
Following service configuration (usually in Startup.cs) is required to get the localization provider working:
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
// add your authorization provider (asp.net identity, identity server, whichever..)
services
.AddControllersWithViews()
.AddMvcLocalization();
services.AddRazorPages();
services.AddRouting();
services.AddDbLocalizationProvider(_ =>
{
_.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"));
...
});
services.AddDbLocalizationProviderAdminUI(_ =>
{
...
});
}
...
}
And following setup of the application is required as a minimum (also usually located in Startup.cs):
public class Startup
{
...
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseDbLocalizationProvider();
app.UseDbLocalizationProviderAdminUI();
app.UseDbLocalizationClientsideProvider(); //assuming that you like also Javascript
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.MapRazorPages();
endpoints.MapDbLocalizationAdminUI();
endpoints.MapDbLocalizationClientsideProvider();
});
}
}
Also, you can refer to sample app in GitHub for some more hints if needed.
Please read more in this blog post!
Please read more details in this blog post!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 9.0.0 | 1,403 | 6/3/2026 |
| 8.2.6 | 74,794 | 8/1/2025 |
| 8.2.5 | 11,988 | 7/4/2025 |
| 8.2.4 | 78,924 | 12/28/2024 |
| 8.2.3 | 22,515 | 11/27/2024 |
| 8.2.2 | 7,836 | 11/15/2024 |
| 8.2.1 | 8,104 | 11/3/2024 |
| 8.2.0 | 13,399 | 9/23/2024 |
| 8.1.6 | 20,447 | 9/2/2024 |
| 8.1.5 | 4,270 | 8/27/2024 |
| 8.1.4 | 8,001 | 8/15/2024 |
| 8.1.3 | 6,353 | 8/13/2024 |
| 8.1.2 | 1,043 | 8/7/2024 |
| 8.1.1 | 1,102 | 8/4/2024 |
| 8.1.0 | 20,320 | 6/5/2024 |
| 8.0.3 | 17,310 | 5/5/2024 |
| 8.0.2 | 10,042 | 3/28/2024 |
| 8.0.1 | 5,957 | 3/5/2024 |
| 8.0.0 | 9,252 | 2/17/2024 |
| 7.5.2 | 65,124 | 12/23/2023 |