Call a common entity service, independently from entity type
I have an infotable with type EntityReference (just name and type field), it contains different objects like mashup, menus ,things, etc
for each entity I need to call its related common service (on my case SetProjectName) :
for things
Things[entityname].SetProjectName("myproj")
for mashups
Mashups[entityname].SetProjectName("myproj")
for users
Users[entityname].SetProjectName("myproj")
.... and so on for almost all types
is there a way to call SetProjectName intependently from entity type ?
