let's say I have this content_type column in an entity which allows values like 'thread', 'post', 'resource',
and also I have a column named 'content_id' and it can hold thread_ids, post_ids, or resource_ids
So, I need to set a getter to thread_id, or post_id, or 'resource_id' dynemically.
Is...