2

Can we create non persisted property inside persisted class. Simply do not save the property(column) with %Save()

Vivek Ranjan
  • 1,432
  • 2
  • 15
  • 37

1 Answers1

1

You are looking for transient property parameter:

Property Name As %String [ Transient ];

From docs:

Specifies whether the property is stored in the database. Applies only to persistent classes.

ZitRo
  • 1,163
  • 15
  • 24