Let's say I have in my method this call:
fieldNum(_myTableName, HouseNumber);
How do I pass the _myTableName from another method? What type should this parameter have? I tried:
when _myTableName is int fieldNum(tableId2Name(_myTableName), HouseNumber);
But it doesn't allow this thing, then tried passing _myTableName as string, which I would logically also expect to work, but doesn't aswell, how do I pass the parameter to be able to use it in fieldNum call? Is it possible at all?