I'm trying to get the fields of a parent entity, but I don't get all the fields, only some of them.
Entity parentEntity = service.Retrieve("entityname", id, new ColumnSet(true));
While debugging, I see some of the customly defined attributes of the custom entity in the returned entity, but some of them are missing. For example, I'm getting the integer values of the option lists, but not the value of a value field. There's no such property in the retrieved entity.
It is a plugin that fires post update event.
Any help will be appreciated. Thanks.