How To Get Key Fields Of Dac Class In Acumatica 27 October 2020 Hello everybody, recently for me it was needed to find out all key fields of DAC class. Code below does this: public List<string> GetKeyFieldsOfDAC(Type dacClass) { var result = new List<string>(); &nb... Read more on How To Get Key Fields Of...