Giter Club home page Giter Club logo

Comments (2)

harveytriana avatar harveytriana commented on May 18, 2024 1

Two things:

  1. In configuration:
    services.AddSqlLocalization(options => options.UseTypeFullNames = false);
    That is, use false, so the class name is the same ResourcesKey in database (like HomeController or SharedResources)

Explanation:
In class SqlStringLocalizerFactory:
// classes go this way
public IStringLocalizer Create(Type resourceSource) {...}
...
// Views got this way
public IStringLocalizer Create(string baseName, string location) {...}

  1. I think that is a bug in second approach, the resouces key includes the location, and the database not exists that entry , I do this workaround:
    public IStringLocalizer Create(string baseName, string location)
    {
    // fix
    var resourceSource = baseName.Replace(location, string.Empty).Substring(1);
    if (_resourceLocalizations.Keys.Contains(resourceSource)) // goodbye: baseName + location
    {
    return _resourceLocalizations[resourceSource];
    }
    var sqlStringLocalizer = new SqlStringLocalizer(GetAllFromDatabaseForResource(resourceSource), resourceSource, false);
    return _resourceLocalizations.GetOrAdd(resourceSource, sqlStringLocalizer);
    }

Then, in my database i can use ResourcesKey like: Views.Home.Index
And works fine!

Perhaps Damien Bod should consider making this change in a future publication.

Regards

from aspnetcorelocalization.

OanaSorina avatar OanaSorina commented on May 18, 2024 1

Hello! I am struggling the same issue with IViewLocalizer usage. The fix for correcting the resourceSource is not in the latest release. When will it be released? I cannot use IViewLocalizer in my Razor pages, unless I get the source code for SqlLocalizer and apply the above fix.

Thanks! Oana

from aspnetcorelocalization.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.