CoreDX.Extensions.Localization.EntityFrameworkCore
1.2.0
dotnet add package CoreDX.Extensions.Localization.EntityFrameworkCore --version 1.2.0
NuGet\Install-Package CoreDX.Extensions.Localization.EntityFrameworkCore -Version 1.2.0
<PackageReference Include="CoreDX.Extensions.Localization.EntityFrameworkCore" Version="1.2.0" />
<PackageVersion Include="CoreDX.Extensions.Localization.EntityFrameworkCore" Version="1.2.0" />
<PackageReference Include="CoreDX.Extensions.Localization.EntityFrameworkCore" />
paket add CoreDX.Extensions.Localization.EntityFrameworkCore --version 1.2.0
#r "nuget: CoreDX.Extensions.Localization.EntityFrameworkCore, 1.2.0"
#:package CoreDX.Extensions.Localization.EntityFrameworkCore@1.2.0
#addin nuget:?package=CoreDX.Extensions.Localization.EntityFrameworkCore&version=1.2.0
#tool nuget:?package=CoreDX.Extensions.Localization.EntityFrameworkCore&version=1.2.0
About
Application localization services and default implementation based on EntityFrameworkCore to manage localized assembly resources.
How to Use
YourDbContext
public class YourLocalizationRecord : LocalizationRecord
{
public int YourProperty { get; set; }
}
public class YourDbContext : DbContext
{
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
// Add entity type to DbContext with default entity type.
modelBuilder.UseLocalizationRecord();
// Add entity type to DbContext with custom entity type based on LocalizationRecord.
modelBuilder.UseLocalizationRecord<YourLocalizationRecord>(b =>
{
b.Property(r => r.ResourceCulture).HasMaxLength(32);
b.ToTable($"{nameof(YourLocalizationRecord)}s");
});
}
}
// Or custom key type
public class LocalizationRecordOfIntKey : LocalizationRecord<int>
{
public int YourProperty { get; set; }
}
ServiceCollection
ServiceCollection services = new ();
// We use IDbContextFactoty to access database.
services.AddDbContextFactoty<YourDbContext>(options => options.UseSqlite("Localization.db"));
// If you use on .NETStandard 2.0 or 2.1.
services.AddDbContext<YourDbContext>(options => options.UseSqlite("Localization.db"));
// Add services to ServiceCollection with default entity type.
// If there are already any localization services in the service collection, no further services will be added.
services.AddEntityFrameworkCoreLocalization<YourDbContext>(options =>
{
options.ResourcesPath = "Resources";
options.CreateLocalizationResourcesIfNotExist = true;
});
// Add services to ServiceCollection with custom entity type based on LocalizationRecord.
services.AddEntityFrameworkCoreLocalization<YourDbContext, YourLocalizationRecord>(options =>
{
options.ResourcesPath = "Resources";
options.CreateLocalizationResourcesIfNotExist = true;
});
// Then add MVC localization services.
services
.AddMvc()
.AddDataAnnotationsLocalization();
You should add EntityFrameworkCore localization services first before MVC services.
Then use IStringLocalizer<T> to localize your content. If CreateLocalizationResourcesIfNotExist is true, record will insert into data table auto if is first access.
If you want to clear resource cache, you can use service of type IDynamicResourceStringLocalizerFactory.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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 is compatible. |
| .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. |
-
.NETStandard 2.0
-
.NETStandard 2.1
-
net10.0
-
net5.0
-
net6.0
-
net8.0
-
net9.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Update to .NET 10.0 .