将表方法传递给 QueryBuildDataSorce 对象的 addLink 方法

发布于 2025-01-03 18:31:25 字数 305 浏览 1 评论 0原文

有没有办法将表方法而不是 fieldid 传递给 QueryBuildDataSource 对象的 addLink 方法? 我有这个代码:

qbdsLedgerTrans.addLink(
        FieldNum(LedgerTable, AccountNum), // Here i need to pass a conditional value of a LedgerTable method instead of a field
        FieldNum(LedgerTrans, AccountNum)
    );

Is there any way to pass a table method instead of fieldid to addLink method of a QueryBuildDataSource object?
I have this code:

qbdsLedgerTrans.addLink(
        FieldNum(LedgerTable, AccountNum), // Here i need to pass a conditional value of a LedgerTable method instead of a field
        FieldNum(LedgerTrans, AccountNum)
    );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

两人的回忆 2025-01-10 18:31:25

我认为不会,因为查询 API 与 SQLServer 中的表紧密绑定,并且表不包含 SQLServer 中的任何方法。

#addLink 将用于生成查询连接语句,因此必须使用数据库内存在的数据,并且方法不在数据库中,而是在 aod 文件中。

根据您想要执行的操作,您可以使用一种方法来封装您的逻辑并返回更正后的 fieldId。

I think no because the query API is tightly bound to tables in SQLServer and tables does not contain any method in SQLServer.

The #addLink will be used to generate query join statement so there must use data present inside the database and method are not in the database but in the aod files.

Depending on what you want to do you can have a method to encapsulate your logic and return the corrected fieldId.

寄居人 2025-01-10 18:31:25

addLink 方法的第一个参数必须是先前连接表(在本例中为LedgerTable)的字段。它可能由函数返回,但我怀疑它会解决您隐藏的(未说明的)问题。

addLink 方法的第二个参数必须是当前数据源表的字段。

在其他情况下(形成延迟连接),您可以改用 addDynalink 方法。

The first argument to the addLink method must be an field of the prior joined table, in this case LedgerTable. It may be returned by a function, but I doubt it will solve your hidden (unstated) problem.

The second argument to the addLink method must be an field of the current datasource table.

In other scenarios (form delayed joins) you could use the addDynalink method instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文