Neptunee.EntityFrameworkCore.MultiLanguage 1.0.3

dotnet add package Neptunee.EntityFrameworkCore.MultiLanguage --version 1.0.3
NuGet\Install-Package Neptunee.EntityFrameworkCore.MultiLanguage -Version 1.0.3
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.3" />
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.3
#r "nuget: Neptunee.EntityFrameworkCore.MultiLanguage, 1.0.3"
#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.3

// Install Neptunee.EntityFrameworkCore.MultiLanguage as a Cake Tool
#tool nuget:?package=Neptunee.EntityFrameworkCore.MultiLanguage&version=1.0.3

Neptunee.EntityFrameworkCore.MultiLanguage

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Working with multi-language database efficiently using EF Core.

<p align="center"> <img width="23%" src="icon.png" alt="icon"/>

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 Configure MultiLanguageProperty :
public class SampleDbContext: DbContext
{
    /// ctors , DbSets ...
    
    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        modelBuilder.ConfigureMultiLanguage(Database);
        base.OnModelCreating(modelBuilder);
    }
}

Using

***Write šŸ˜—**

entity.Prop = new MultiLanguageProperty("defulte language","pew pew");
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),
           GetOrFirstIn = e.Prop.GetOrFirst(languageKey),
           ContainsIn = e.Prop.ContainsIn(languageKey)
       });

**SQL Query šŸ˜—*

-- @languageKey='fr'

SELECT e."Id",
    MultiLanGetIn(e."Name", @languageKey) AS "GetIn",
    MultilanGetOrFirstIn(e."Name", @languageKey) AS "GetOrFirst",
    MultilanContainsIn(e."Name", @languageKey) AS "ContainsIn"
FROM "Entities" AS e;

More

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

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
1.0.3 213 12/6/2023
1.0.2 139 11/2/2023
1.0.1 790 10/12/2023
1.0.0 899 9/28/2023