I have something like this
Type MyType = Type.GetType(FromSomewhereElse);
var listS = context.GetList<MyType>().ToList();
I would like to get the Type which is MyType in this case and pass it to the Generic Type method GetList
This is the error I am getting:
The type or namespace name 'MyType' could not be found (are you missing a using directive or an assembly reference?)