Skip to main content
Before updating an Entity, it must be retrieved by using the Idx class. Updating a basic property of an Entity means changing the values that are stored in properties of basic data types, such as integer or string.
  1. Get an Entity from the sale table with row ID 2.
  2. Update properties of the sale (see below)
  3. Set the IsDirty property to true if there is any change made to that Entity.
  4. Call Save() to update any changed data in the database.

See also