Localization.SqlLocalizer
2.0.4
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Localization.SqlLocalizer --version 2.0.4
NuGet\Install-Package Localization.SqlLocalizer -Version 2.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Localization.SqlLocalizer" Version="2.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Localization.SqlLocalizer --version 2.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Localization.SqlLocalizer, 2.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Localization.SqlLocalizer as a Cake Addin #addin nuget:?package=Localization.SqlLocalizer&version=2.0.4 // Install Localization.SqlLocalizer as a Cake Tool #tool nuget:?package=Localization.SqlLocalizer&version=2.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
========================
Documentation: http://localizationsqllocalizer.readthedocs.io/en/latest/
https://github.com/damienbod/AspNetCoreLocalization/issues
<strong>Basic Usage ASP.NET Core</strong>
Add the NuGet package to the project.json file
"dependencies": {
"Localization.SqlLocalizer": "2.0.4",
Add the DbContext and use the AddSqlLocalization extension method to add the SQL Localization package.
public void ConfigureServices(IServiceCollection services)
{
// init database for localization
var sqlConnectionString = Configuration["DbStringLocalizer:ConnectionString"];
services.AddDbContext<LocalizationModelContext>(options =>
options.UseSqlite(
sqlConnectionString,
b => b.MigrationsAssembly("ImportExportLocalization")
),
ServiceLifetime.Singleton,
ServiceLifetime.Singleton
);
// Requires that LocalizationModelContext is defined
services.AddSqlLocalization(options => options.UseTypeFullNames = true);
Create your database
dotnet ef migrations add Localization --context localizationModelContext
dotnet ef database update Localization --context localizationModelContext
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.AspNetCore.Localization (>= 2.0.1)
- Microsoft.EntityFrameworkCore (>= 2.0.0)
- Microsoft.EntityFrameworkCore.InMemory (>= 2.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 2.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.1.0 | 39,284 | 11/5/2021 |
3.0.0 | 12,595 | 11/13/2020 |
2.0.7 | 9,994 | 3/17/2020 |
2.0.6 | 14,579 | 9/23/2019 |
2.0.5 | 12,137 | 5/3/2019 |
2.0.4 | 782 | 4/2/2019 |
2.0.3 | 3,443 | 9/2/2018 |
2.0.2 | 6,633 | 8/31/2017 |
2.0.1 | 2,280 | 8/25/2017 |
2.0.0 | 2,153 | 8/19/2017 |
1.0.10 | 2,371 | 5/14/2017 |
1.0.9 | 1,505 | 3/10/2017 |
1.0.8 | 1,425 | 3/3/2017 |
1.0.7 | 6,963 | 2/5/2017 |
1.0.6 | 2,028 | 12/5/2016 |
1.0.5 | 1,505 | 11/27/2016 |
1.0.4 | 1,428 | 11/22/2016 |
1.0.3 | 1,659 | 7/15/2016 |
1.0.2 | 1,453 | 6/28/2016 |
1.0.1 | 1,463 | 5/26/2016 |
1.0.0 | 1,596 | 5/26/2016 |
Release Notes: Version 2.0.4
fixed multi threading issues