The GetPK() method could be solved generically in the CommonEntityBase with a method which returns the values always in a tuple (with 1 or more cells). This way you don't have to generate a lot of code which is actually redundant (and use an .lpt include template).
Inside GetPK, you traverse the fields in the entity.Fields.PrimaryKeyFields. There's one caveat: inheritance hierarchies of TargetPerEntity, which have all fields of all types in their hierarchy in their Fields collection, so also the PK fields of supertypes. There's a helper routine in FieldsUtils which will give you the # of real PK fields.
As all pk fields of all supertypes in that situation have the same value, and you just want values, just grab the pk fields from the primarykeyfields collection for the count returned and obtain their real value using GetCurrentFieldValue.
So it comes down to something like:
public Tuple GetPk()
{
int numberOfPkFields = FieldUtils.DetermineNumberOfPkFields(this.Fields.PrimaryKeyFields);
List<object> pkValues = new List<object>();
for(int i=0;i<numberOfPkFields;i++)
{
pkValues.Add(this.GetCurrentFieldValue(this.Fields.PrimaryKeyFields[i].FieldIndex));
}
return new Tuple(pkValues);
}