Core concepts of ObjectBox Swift
mainObjectBox Swift uses several key abstractions to manage data persistence:
Store: The central database entry point. You use it to initialize the database and obtain instances ofBoxes.Box: The primary interface for a specific type. Use aBoxto persist objects, remove them, or createQuerys.Entity: A protocol you must implement on your Swift types to mark them as persistable by ObjectBox.Id: A unique identifier used to distinguish object instances within the database.Query: An object used to perform conditional fetching of specific types of objects based on defined criteria.