I have a this function---
public static T parseEntity<T>(Object source, Object target)
this function parse the Entity in source to Model in target. My intention is call him self like this:
EntityFactory.parseEntity<T>(prop.GetValue(source, null), objectAux);
my problem is the parameter <T>
. I have a name of type as string.