在像 LedgerJournalTransDaily 这样的表单中,有一个从 LedgerJournalTrans 导入的字段 Txt。使用 JournalNum,我需要转到 LedgerJournalTable 并获取 Name 字段。
我写了一个如下的显示方法:
[SysClientCacheDataMethodAttribute(true)]
public display Name GetLedgerJournalTableName()
{
LedgerJournalTable ledgerJournalTable;
Name ret;
select firstFast firstOnly ledgerJournalTable
where ledgerJournalTable.JournalNum == this.JournalNum;
ret = ledgerJournalTable.Name;
return ret;
}
老实说,我不确定这是否足够快,或者是否有其他方法可以做到这一点。请给我一个提示。