Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Yes, we do support compute columns in v2. Any field can be marked as IsAssignedByDbOnInsert and/or IsAssignedByDbOnUpdate (those fields are independent). Computed columns are flagged True for both of those by default. Using SQL Server, we use the OUTPUT clause of the INSERT and UPDATE to pull back the values. Other DBs run a query after the insert or update to get the new values. Those values are then returned to entity.
|