I have this function
  public IList<TEntity> GetData<TEntity>() where TEntity : class
    {
        return _DbContext.Set<TEntity>().ToList();
    }
and I call this function like this
GetData<View_Export_Books>()
So now I have to load the class View_Export_Books dynamically from a string. Is this possible?
Thanks for any help.
Add Comment:
I have View_Export_Books as string and i want convert it to a generic parameter.
 
    