Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7943013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:08:50+00:00 2026-06-04T00:08:50+00:00

Is there anywhere in ASP.NET MVC where you can get a reference to the

  • 0

Is there anywhere in ASP.NET MVC where you can get a reference to the ResourceProviderFactory that is instantiated in order to perform Property Injection to add a custom DB Implementation to retrieve the resources from?

I have a custom resource provider being loaded but I wanted to know whether there was an alternative to using a Static DI container to inject the dependency within the Provider.

Similar to how you can inject for the Role and Membership providers in MVC.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T00:08:52+00:00Added an answer on June 4, 2026 at 12:08 am

    The trick is to implement an infrastructure component calls into MVC’s DependencyResolver.Current, so you can register the real ResourceProviderFactory using your favorite DI container.

    Here is such a class that will do the trick:

    public class MvcResourceProviderFactory : ResourceProviderFactory
    {
        public override IResourceProvider CreateGlobalResourceProvider(
            string classKey)
        {
            return GetFactory().CreateGlobalResourceProvider(classKey);
        }
    
        public override IResourceProvider CreateLocalResourceProvider(
            string virtualPath)
        {
            return GetFactory().CreateLocalResourceProvider(virtualPath);
        }
    
        private static ResourceProviderFactory GetFactory()
        {
            var resolver = DependencyResolver.Current;
    
            var factory = resolver.GetService<ResourceProviderFactory>();
    
            if (factory != null)
            {
                return factory;
            }
    
            throw new InvalidOperationException(string.Format(
                "No {0} has been registered in the {1}.",
                typeof(ResourceProviderFactory).FullName,
                DependencyResolver.Current.GetType().FullName));
        }
    }
    

    This class can be configured as follows:

    <globalization
        resourceProviderFactoryType="MyApp.MvcResourceProviderFactory, MyApp"
        enableClientBasedCulture="true" uiCulture="auto" culture="auto"
    />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There's so much hype about ASP.NET MVC these days, but the truth is that
Is there a well-designed method that can run my ruby program from anywhere? I
In my ASP.NET MVC project, my actions typically call a Service layer to get
Is there any component that does handle validation errors similarly to ASP.NET's ValidationSummary control
I have an ASP.NET MVC 3 app that is using SQL Server CE 4.0
essentially what I'm trying to do is get my head around Microsoft's ASP.NET MVC
I am using ASP.NET MVC 3 . I get my view's data in the
I have a Bootstrapper that looks through all Assemblies in an ASP.NET MVC application
I am considering using redis for asp.net mvc application, there is no question about
I've read through RFC 2617 and can't find there or anywhere else what the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.