foreach (IEntity(2) entity in Trans)
{
entity.Fields["MyField"].CurrentValue;
}
if you use a typed collection then you can access the concrete type specifically
EntityCollection<MyEntity> collection = SubsTrans.GetUnUpdatedRecords(Pubcode);
foreach (MyEntity entity in Trans)
{
entity.MyField;
}