- I have done the following steps:
- Created the SQL list
- Put the list in “Database Scripts” of the customization project.
- Create the DAC for the database table and move it to the extension library that I'm working on.
- I'm storing the values as follows:
DACName store = new DACName
{
column1 = value1,
column2 = value2,
column3 = value3
};
PxGraphName.Caches[typeof(DACName)].Insert(store);
PxGraphName.Persist();
PxGraphName.Caches[typeof(DACName)].Clear();
- The issue is that, whenever I run the program, I look into the table and the value isn’t stored.
- I know information might be a bit vague but it’s to not overcomplicate things. I also haven't added anything the DAC of the table that stores the values, so if i need to add something let me know.