Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有以下代码:
DacClass cl = new DacClass(); //init fields of DacClass() this.Persist();
但是当我在任何图表中运行此代码时,我会遇到不同的错误。为什么?
您不能在当前图中的 db 中创建 DAC 项目。如 T200 手册中所述,您应该创建图形实例并在创建的实例中调用持久化方法。另一种选择是使用方法 PXDataBase.Insert。如果您需要使用图形逻辑插入,则第一个选项更可取。如果您需要性能,则第二种选择更适合。