xxxxxxxxxx
/* There is more than one Get method with the same name:
You can use GetMethods (plural!) to get an array of all matching methods,
and then look for the one which has IsGenericMethod: */
var method = typeof(YourClass)
.GetMethods()
.Where(x => x.Name == "TableExists")
.FirstOrDefault(x => x.IsGenericMethod);
/* I recommend this over using parameter specifiers, since it'll give you an object
you can step through at debug time if there are ever any problems. */