Neptunee.EntityFrameworkCore.MultiLanguage
1.0.2
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 Neptunee.EntityFrameworkCore.MultiLanguage --version 1.0.2
NuGet\Install-Package Neptunee.EntityFrameworkCore.MultiLanguage -Version 1.0.2
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="Neptunee.EntityFrameworkCore.MultiLanguage" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Neptunee.EntityFrameworkCore.MultiLanguage --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Neptunee.EntityFrameworkCore.MultiLanguage, 1.0.2"
#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 Neptunee.EntityFrameworkCore.MultiLanguage as a Cake Addin #addin nuget:?package=Neptunee.EntityFrameworkCore.MultiLanguage&version=1.0.2 // Install Neptunee.EntityFrameworkCore.MultiLanguage as a Cake Tool #tool nuget:?package=Neptunee.EntityFrameworkCore.MultiLanguage&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Neptunee.EntityFrameworkCore.MultiLanguage
Working with multi-language database efficiently using EF Core.
Supports
- PostgreSQL
- SQL Server
How It's Work ?
***Write š** store all translations in the same colum as Json
{
"language": "value"
}
For default language the key is always "" (empty string).
***Read š** Using custom sql functions and call them from EF Core as static methods you can get The value in the language you want simply.
More details about create custom sql functions
Setup
- You should install the NuGet package :
dotnet add package Neptunee.EntityFrameworkCore.MultiLanguage
- Registration :
builder.Services.AddMultiLanguage<SampleDbContext>();
- Use
MultiLanguageProperty
to define props in entities/columns in tables :
public class Entity : BaseEntity
{
public MultiLanguageProperty Prop { get; set; }
}
- in
DbContext
override OnModelCreating to ConfigureMultiLanguageProperty
:
public class SampleDbContext: DbContext
{
/// ctors , DbSets ...
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.ConfigureMultiLanguage(Database);
base.OnModelCreating(modelBuilder);
}
}
Using
***Write š**
entity.Prop = new MultiLanguageProperty("pew pew"); // defulte language always :)
entity.Prop.Upsert("fr", "pƩw pƩw");
context.Add(entity);
await context.SaveChangesAsync();
***Read š**
context.Entities
.AsNoTracking()
.Select(e => new
{
Id = e.Id,
GetIn = e.Prop.GetIn(languageKey),
GetOrDefaultIn = e.Prop.GetOrDefaultIn(languageKey),
ContainsIn = e.Prop.ContainsIn(languageKey)
});
**SQL Query š*
-- @languageKey='fr'
SELECT e."Id",
MultiLanGetIn(e."Name", @languageKey) AS "GetIn",
MultilanGetOrDefaultIn(e."Name", @languageKey) AS "GetOrDefaultIn",
MultilanContainsIn(e."Name", @languageKey) AS "ContainsIn"
FROM "Entities" AS e;
More
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Microsoft.EntityFrameworkCore (>= 6.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 6.0.0)
-
net7.0
- Microsoft.EntityFrameworkCore (>= 6.0.0)
- Microsoft.EntityFrameworkCore.Relational (>= 6.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.