I have a external DLL with my classes and I would like to make the query depending on the type. I explain better.
I get the type with the function GetType:
Type targetType = Type.GetType("...");
If there is any way to make a select like this:
_context.Set<targetType>().ToList()
Assuming that _context is my DBContext.
Thanks