Alternative for Primarykey in Mx 7.4.0

0
Hi Team,   Can anyone please let me know the alternative for row.primarykey() in mx 7.4.0? IDataRow row; Query in Mx6.7.1 : A.append("SELECT * FROM "+B.entityName+" AS intFact WHERE intFact/"+InterestFact.MemberNames.InterestFact_InterestFees+"="+row.primaryKey());   Regards, Swathi  
asked
1 answers
0

What module are you using? Is it possible there’s an update available for it already?

Here’s the documentation about that (or maybe a similar) method deprecation:

https://docs.mendix.com/refguide7/moving-from-6-to-7#6-4-removed-data-storage-functionality

It says to use this instead:

getValue(context, 0)

 

answered