In Dynamics AX, using the Business Connector, how do you call kernel functions?

前端 未结 2 1798
走了就别回头了
走了就别回头了 2020-12-18 09:24

I would like to know how to call kernel functions from AX using C# (.Net Business Connector).

Specifically, can you call methods like fieldName2Id, tableName2Id and

2条回答
  •  别那么骄傲
    2020-12-18 09:35

    It's better to use:

    Dictionary  dictionary = new Dictionary();
    ;
    dictionary.tableName2Id(...);
    

提交回复
热议问题