vote up 1 vote down star

I have a data access library that has a few classes that all implement the same interface, which has a generic type parameter:

public interface IGetByCommonStringRepository<TEntity>
{
    TEntity GetByCommonStringColumn(string commonString);
}

public class Repository1<Entity1> : IGetByCommonStringRepository<Entity1>
{
    public Entity1 GetByCommonStringColumn(string commonString)
    {
        //do stuff to get the entity
    }
}

public class Repository2<Entity2> : IGetByCommonStringRepository<Entity2>
//...and so on

Rather than forcing consumers of this library to instantiate one of the four repository classes separately for each <TEntity>, I am hoping that there's some way that I can create a static method in a "helper/utility" class in the same assembly that will be able to discern which implementation to instantiate, create an instance, and execute the GetByCommonStringColumn method. Something like...

public static TEntity GetEntityByCommonStringColumn(string commonString) where TEntity : class
{
    IGetByCommonStringRepository<TEntity> repository = 
        DoMagicalReflectionToFindClassImplementingIGetByCommonString(typeof(TEntity));
    //I know that there would have to an Activator.CreateInstance() 
    //or something here as well.
    return repository.GetByCommonStringColumn(commonString) as TEntity;
}

Is anything like this possible?

Thanks in advance.

flag

1  
The classes in your example code don't implement IGetByCommonStringRepository<>. – Luke Nov 5 at 18:04
Oops, sorry. Fixing now. – AJ Nov 5 at 18:46

2 Answers

vote up 1 vote down check

That example still needs further fixing.. For each repository it is missing a constraint. For each public (right now it is invalid private) method it is also missing a functional body.. For that interface method it requires a generic argument.

Then try, or play around, if I understood you right:

public static TEntity clr_bloat_reflected_msdn_method<TEntity>(string commonString) where TEntity : class
        {
            Assembly a = Assembly.GetExecutingAssembly();
            foreach (Type t in a.GetTypes())
                if (!t.IsAbstract && typeof(IGetByCommonStringRepository<TEntity>).IsAssignableFrom(t))
                    return ((IGetByCommonStringRepository<TEntity>)Activator.CreateInstance(t)).GetByCommonStringColumn(commonString);
            return null;
        }

link|flag
Something went haywire with your code formatting. – DanThMan Nov 5 at 19:36
Edited original post to fix code. Sometimes it's hard to translate from specific situational code in an IDE to Markdown. – AJ Nov 5 at 19:37
First it was interrupts, then my keyboard went, then Windows started the usual 7 day running hang and losing icons, audio etc, then it went into spelling. Now it's my code-formatting on stackoverflow.com @ ASP.NET MVC. Time to go and do serious work and lose yet another addiction.. sigh. – MajkaRa Tito Nov 5 at 19:51
Edited to fix code formatting. – JacobM Nov 5 at 20:04
@Majkera, Much better now, thanks :) – DanThMan Nov 5 at 20:54
vote up 0 vote down

One approach might be to construct a map of implementations (or implementation factories, if the implementations need to be created on the fly) where the key is the entity type and the value is the implementation (or factory). Then when you get an entity, you just index into the map using the entity type and get your implementation.

One potential issue is if you have a type hierarchy and you want to be able to select an implementation based on the entity's superclass. In that case you might need to loop through the map's keys and check whether each key isAssignableFrom the entity type.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.