[]
After a table is created, you can perform various operations to control how its data is loaded, accessed, and organized.
This section introduces core table-level operations provided by DataManager:
Fetch & Reload - Initialize or refresh table data from its configured data source.
Indexes of Table - Define indexes to optimize data access and lookup performance.
Search Table Data - Search for records within a table based on field values.These operations apply directly to a Table instance and affect how the table behaves during data access and interaction.
Use table operations when you need to:
Ensure data is initialized before use
Refresh data from the source
Improve data lookup performance
Search for specific records
For view-level filtering and projection, refer to the View section.
For defining relationships between tables, refer to the Table Relationships section.