Localization.SqlLocalizer 2.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Localization.SqlLocalizer --version 2.0.5
NuGet\Install-Package Localization.SqlLocalizer -Version 2.0.5
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.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Localization.SqlLocalizer --version 2.0.5
#r "nuget: Localization.SqlLocalizer, 2.0.5"
#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.5

// Install Localization.SqlLocalizer as a Cake Tool
#tool nuget:?package=Localization.SqlLocalizer&version=2.0.5

Build status | NuGet Status |

========================

Documentation: http://localizationsqllocalizer.readthedocs.io/en/latest/

Issues: https://github.com/damienbod/AspNetCoreLocalization/issues

Code: https://github.com/damienbod/AspNetCoreLocalization/tree/master/src/Localization.SqlLocalizer

<strong>Basic Usage ASP.NET Core</strong>

Add the NuGet package to the project.json file

"dependencies": {
        "Localization.SqlLocalizer": "2.0.5",

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

========================

ASP.NET Core MVC Localization Example

<ul> <li><a href="http://damienbod.com/2015/10/21/asp-net-5-mvc-6-localization/">ASP.NET Core MVC Localization</a></li> <li><a href="http://damienbod.com/2015/10/24/using-dataannotations-and-localization-in-asp-net-5-mvc-6/">Using DataAnnotations and Localization in ASP.NET Core MVC </a></li> <li><a href="http://damienbod.com/2016/01/29/asp-net-core-1-0-using-sql-localization/">ASP.NET Core using SQL Localization</a></li> </ul>

Product 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.

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 29,915 11/5/2021
3.0.0 12,260 11/13/2020
2.0.7 9,220 3/17/2020
2.0.6 14,507 9/23/2019
2.0.5 11,497 5/3/2019
2.0.4 754 4/2/2019
2.0.3 3,388 9/2/2018
2.0.2 6,578 8/31/2017
2.0.1 2,256 8/25/2017
2.0.0 2,118 8/19/2017
1.0.10 2,325 5/14/2017
1.0.9 1,460 3/10/2017
1.0.8 1,393 3/3/2017
1.0.7 6,794 2/5/2017
1.0.6 1,979 12/5/2016
1.0.5 1,466 11/27/2016
1.0.4 1,387 11/22/2016
1.0.3 1,617 7/15/2016
1.0.2 1,413 6/28/2016
1.0.1 1,425 5/26/2016
1.0.0 1,557 5/26/2016

Release Notes: Version 2.0.4
fixed multi threading issues