CreateRecord Method (IFilteredRecordCollection<TRecord>)
- Last UpdatedApr 08, 2026
- 1 minute read
The function is executed prior to the record being written to the RealTime Database. All required key fields should be populated during this action (Name, Dataset). To abort record creation, return false. To confirm record creation, return true;
The table must be unlocked when calling this.
| Overload | Description |
|---|---|
| CreateRecord(Func<TRecord,Boolean>) | Creates a new record inside of the RealTime Database.
The function is executed prior to the record being written to the RealTime Database. All required key fields should be populated during this action (Name, Dataset). To abort record creation, return false. To confirm record creation, return true; The table must be unlocked when calling this. |
| CreateRecord(Action<TRecord>) | Creates a new record inside of the RealTime Database.
The populateRecordAction is executed prior to the record being written to the RealTime Database. All required key fields should be populated during this action (Name, Dataset). The table must be unlocked when calling this. |