IRecord Interface Methods
- Last UpdatedApr 08, 2026
- 2 minute read
For a list of all members of this type, see IRecord members.
| Name | Description | |
|---|---|---|
![]() | GetTableName | Get the name of the table that a record belongs to |
![]() | ReadField<T> | Read a value from a field. This method should be considered unsafe, and for typically database read operations should NOT be used. Its purpose is for applications that need to read fields that DO NOT EXIST FOR RELEASE; applications that need to read fields that are added to the database by customers. Custom projects that wish to make use of the Object Model should also attempt to avoid using this method. For customer applications to read custom fields in the database, the recommended solution is to generate a customer specific object model by executing GenerateDatabaseModel.exe. |
![]() | WriteField<T> | Write a value to a field. This method should be considered unsafe, and for typically database write operations should NOT be used. Its purpose is for applications that need to write to fields that DO NOT EXIST FOR RELEASE; applications that need to write to fields that are added to the database by customers. Custom projects that wish to make sure of the Object Model should also attempt to avoid using this method. For customer applications to write to custom fields in the database, the recommended solution is to generate a customer specific object model by executing GenerateDatabaseModel.exe. |
