如何使用 X++ 从 Dynamics AX 查询实体?

How to query entity from Dynamics AX with X++?

我找不到任何方法从 Dynamics AX(财务和运营)查询数据。我用google到处搜索,他们都在谈论如何查询table而不是entity。 谁知道该怎么做? 如果我想从AccountantEntity中读取数据,在X++中应该怎么做?

谢谢, 蒂勒菲

实体指的是DataEntityView。它们在 AOT - 数据模型 - 数据实体中。

在 X++ 中,您可以像引用任何其他 table/view 一样引用 AccountantEntity(您的模型必须引用定义实体的 Application Suite):

AccountantEntity accountantEntity;
select firstOnly * from accountantEntity;