I recently created an interface layer to distinguish the DataAccessProvider from our Business logic layer. With this approach we can change our choice of DataAccessProvider whenever we want by changing the values in the Web/App.Config. (more details can be given if needed).
Anyway, to do this we use reflection to accomplish our DataProvider class on which we can work.
/// <summary> /// The constructor will create a new provider with the use of reflection. /// If the assembly could not be loaded an AssemblyNotFoundException will be thrown. /// </summary> public DataAccessProviderFactory() { string providerName = ConfigurationManager.AppSettings['DataProvider']; string providerFactoryName = ConfigurationManager.AppSettings['DataProviderFactory']; try { activeProvider = Assembly.Load(providerName); activeDataProviderFactory = (IDataProviderFactory)activeProvider.CreateInstance(providerFactoryName); } catch { throw new AssemblyNotFoundException(); } }
But now I’m wondering how slow reflection is?
In most cases: more than fast enough. For example, if you are using this to create a DAL wrapper object, the time taken to create the object via reflection will be minuscule compared to the time it needs to connect to a network. So optimising this would be a waste of time.
If you are using reflection in a tight loop, there are tricks to improve it:
where T : new()andMakeGenericType)Delegate.CreateDelegate(to a typed delegate; doesn’t work for constructors)Reflection.Emit– hardcoreExpression(likeDelegate.CreateDelegate, but more flexible, and works for constructors)But for your purposes,
CreateInstanceis perfectly fine. Stick with that, and keep things simple.Edit: while the point about relative performance remains, and while the most important thing, ‘measure it’, remains, I should clarify some of the above. Sometimes… it does matter. Measure first. However, if you find it is too slow, you might want to look at something like FastMember, which does all the
Reflection.Emitcode quietly in the background, to give you a nice easy API; for example:which is simple, but will be very fast. In the specific example I mention about a DAL wrapper—if you are doing this lots, consider something like dapper, which again does all the
Reflection.Emitcode in the background to give you the fastest possible but easy to use API: