Okay, I think I got it. This is a massive pain, but I think it works.

Code:
            Type testedType = MyTestInputObject.GetType();
            MethodInfo mi = typeof(Entity).GetMethod("FindOne", new Type[] { typeof(string), typeof(string) });
            MethodInfo fooRef = mi.MakeGenericMethod(testedType);
            var objectToTest = fooRef.Invoke(null, new object[] { "Id", this.testData.Id.ToString() });


Edited by tfabris (10/03/2016 04:08)
_________________________
Tony Fabris