fbognini.EfCoreLocalization.Dashboard 0.1.0

dotnet add package fbognini.EfCoreLocalization.Dashboard --version 0.1.0
                    
NuGet\Install-Package fbognini.EfCoreLocalization.Dashboard -Version 0.1.0
                    
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="fbognini.EfCoreLocalization.Dashboard" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="fbognini.EfCoreLocalization.Dashboard" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="fbognini.EfCoreLocalization.Dashboard" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add fbognini.EfCoreLocalization.Dashboard --version 0.1.0
                    
#r "nuget: fbognini.EfCoreLocalization.Dashboard, 0.1.0"
                    
#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.
#:package fbognini.EfCoreLocalization.Dashboard@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=fbognini.EfCoreLocalization.Dashboard&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=fbognini.EfCoreLocalization.Dashboard&version=0.1.0
                    
Install as a Cake Tool

EFCore

NuGet Relaease

A flexible, database-driven localization provider for ASP.NET Core using Entity Framework Core. This library eliminates the need for static resource files, allowing dynamic management of translations without application redeployment.

What's included

This package consists of two NuGet packages:

  • fbognini.EfCoreLocalization - The core library that provides database-backed localization
  • fbognini.EfCoreLocalization.Dashboard - An optional web dashboard to manage translations through a UI

Installation

Install the core library:

dotnet add package fbognini.EfCoreLocalization

Optionally, install the management dashboard:

dotnet add package fbognini.EfCoreLocalization.Dashboard

Quick start

1. Configure your database context

Register EfCoreLocalizationDbContext to your services. You'll need to configure it with your database connection:

var connectionString = builder.Configuration.GetConnectionString("DefaultConnection");
builder.Services.AddDbContext<EfCoreLocalizationDbContext>(options => 
    options.UseSqlServer(connectionString, b => b.MigrationsAssembly("YourAppName")), 
    ServiceLifetime.Singleton, 
    ServiceLifetime.Singleton);

2. Register services

Add the localization services to your DI container:

builder.Services.AddLocalization();
builder.Services.AddEfCoreLocalization(builder.Configuration);

3. Apply migrations

Generate and apply the necessary database tables.

#Via .NET CLI:

dotnet ef migrations add Localization --context EfCoreLocalizationDbContext
dotnet ef database update --context EfCoreLocalizationDbContext

Via Package Manager Console in Visual Studio:

Add-Migration Localization -Context EfCoreLocalizationDbContext
Update-Database -Context EfCoreLocalizationDbContext

Alternatively, apply migrations programmatically at startup:

var app = builder.Build();

await app.ApplyMigrationEFCoreLocalization();

4. Configure middleware

Enable request localization using the database settings.

var app = builder.Build();

// ... other middleware

app.UseRequestLocalizationWithEFCoreLocalization();

// ... routing and endpoints

Configuration

You can configure localization settings in your appsettings.json:

{
  "EfCoreLocalization": {
    "DefaultSchema": "localization",
    "ReturnOnlyKeyIfNotFound": true,
    "CreateNewRecordWhenDoesNotExists": true,
    "GlobalResourceId": null,
    "ResourceIdPrefix": null,
    "RemovePrefixs": [],
    "RemoveSuffixs": ["Dto"]
  }
}

Or configure it in code:

builder.Services.AddEfCoreLocalization(options =>
{
    options.DefaultSchema = "localization";
    options.ReturnOnlyKeyIfNotFound = true;
    options.CreateNewRecordWhenDoesNotExists = true;
});

Reference

Option Type Description
DefaultSchema string The database schema for localization tables.
GlobalResourceId string? If set, overrides the ResourceId for all lookups.
ReturnOnlyKeyIfNotFound bool If true, returns the key string when a translation is missing.
CreateNewRecordWhenDoesNotExists bool If true, automatically inserts missing keys into the database.
RemovePrefixs string[] List of prefixes to strip from the ResourceId.
RemoveSuffixs string[] List of suffixes to strip from the ResourceId.

Usage

Use standard ASP.NET Core interfaces (IViewLocalizer, IStringLocalizer<T>).

In your Razor views, inject IViewLocalizer and use it:

@using Microsoft.AspNetCore.Mvc.Localization
@inject IViewLocalizer Localizer

<h1>@Localizer["Welcome"]</h1>

Or in your code-behind/controllers:

public class IndexModel : PageModel
{
    private readonly IStringLocalizer<IndexModel> _localizer;

    public IndexModel(IStringLocalizer<IndexModel> localizer)
    {
        _localizer = localizer;
    }

    public void OnGet()
    {
        var message = _localizer["Welcome"];
    }
}

Customizing Resource IDs

By default, the Resource ID matches the type name (e.g., "IndexModel"). You can customize this using the LocalizationKeyAttribute:

[LocalizationKey("MyCustomResource")]
public class IndexModel : PageModel
{
    // ...
}

Dashboard

The Dashboard provides a UI to manage translations.

Setup

Register the dashboard services:

builder.Services.AddEfCoreLocalizationDashboard();

Then add the dashboard middleware. If you're using MVC, make sure to register your controller routes first:

var app = builder.Build();

// For MVC apps, register routes before the dashboard
app.MapControllerRoute(
    name: "area",
    pattern: "{area:exists}/{controller=Home}/{action=Index}/{id?}");
        
app.MapControllerRoute(
    name: "default",
    pattern: "{controller=Home}/{action=Index}/{id?}");

// Add the dashboard
app.UseEfCoreLocalizationDashboard();

app.MapRazorPages(); // or your other route mappings

The dashboard will be available at /localization by default. You can change the path:

app.UseEfCoreLocalizationDashboard(pathMatch: "my-custom-path", options: dashboardOptions);

Authorization

By default, the dashboard only allows requests from localhost. You can customize this:

var dashboardOptions = new DashboardOptions
{
    Authorization = new[] { new YourCustomAuthorizationFilter() },
    AsyncAuthorization = new[] { new YourAsyncAuthorizationFilter() }
};

How it works

The library stores translations in three main tables:

  • Languages - The languages you support (e.g., "en-US", "it-IT", "fr-FR")
  • Texts - The text keys you want to translate (identified by TextId and ResourceId)
  • Translations - The actual translated text for each language

When you call Localizer["MyKey"], the library:

  1. Looks up the current culture from CultureInfo.CurrentCulture
  2. Searches for a translation matching the key and culture
  3. Returns the translated text, or the key itself if not found (depending on your settings)

Example project

Check out the SampleWebApp project in the repository for a complete working example.

Requirements

  • .NET 8.0 or later
  • Entity Framework Core 8.0 or later
  • A database provider compatible with EF Core

Acknowledgments

This code was freely inspired by AspNetCoreLocalization by damienbod.

Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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 was computed.  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. 
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
0.1.0 86 1/5/2026
0.0.1 85 1/4/2026