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 541605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:21:36+00:00 2026-05-13T10:21:36+00:00

What are best practices to configure following class with spring.NET? using System.Collections.Generic; using Edu3.DTOModel;

  • 0

What are best practices to configure following class with spring.NET?

using System.Collections.Generic;
using Edu3.DTOModel;

namespace Edu3.Data.SubsonicProvider.RepositoryFramework
{
    public static class RepositoryFactory
    {
        private static readonly Dictionary<string, object> Repositories = 
            new Dictionary<string, object>();

        static RepositoryFactory()
        {
            Repositories.Add(typeof(ISsoUrlTemplateRepository).Name, 
                new SsoUrlTemplateRepository());
            Repositories.Add(typeof(IPackageSessionNodeRepository).Name, 
                new PackageSessionNodeRepository());
            Repositories.Add(typeof(IPackageSessionNodeFinishedRepository).Name, 
                new PackageSessionNodeFinishedRepository());
        }

        public static IRepository<TEntity> GetRepository<TEntity, TRepository>()
            where TEntity : IEntity
        {
            var interfaceShortName = typeof(TRepository).Name;

            // The provider was in the cache, so retrieve it
            var repository = (IRepository<TEntity>)Repositories[interfaceShortName];

            return repository;
        }
    }
}

I would like to add the repositories with Spring.NET. Is this possible?

  • 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-05-13T10:21:36+00:00Added an answer on May 13, 2026 at 10:21 am

    Expose the dictionary as a public property and remove the readonly modifier of the field and don’t make your class static. Then use this configuration:

      <object id="RepositoryFactory" type="Edu3.Data.SubsonicProvider.RepositoryFramework. RepositoryFactory, Edu3.Data.SubsonicProvider.RepositoryFramework">
        <property name="Repositories">
          <dictionary key-type="System.Type" value-type="System.Object">
            <entry value-ref="SsoUrlTemplateRepository">
              <key>
                <expression value="T(Edu3.Data.SubsonicProvider.RepositoryFramework.SsoUrlTemplateRepository, Edu3.Data.SubsonicProvider.RepositoryFramework)"/>
              </key>           
            </entry>
          </dictionary>
        </property>
      </object>
    
      <object id="SsoUrlTemplateRepository" type="Edu3.Data.SubsonicProvider.RepositoryFramework.SsoUrlTemplateRepository, Edu3.Data.SubsonicProvider.RepositoryFramework" singleton="false"/>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What are the best practices for using use cases to model system behavior that
Any re-sources or best-practices for implementing dynamic class re-loading feature into a J2EE WebApp
This question is for ASP.NET and SQL Server developers. What are your best practices
I'm having issues understanding how to configure TFS according to best practices as provided
Best practices or tools for installing a SQL Server database I have a SQL
What best practices have you used in unit testing embedded software that are peculiar
What are the best practices for creating exceptions? I just saw this, and I
What's the best practices way to test that a model is valid in rails?
Assuming that best practices have been followed when designing a new database, how does
What are the best practices with respect to planning disk space for a Subversion

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.