package
2.0.0+incompatible
Repository: https://github.com/objectbox/objectbox-go.git
Documentation: pkg.go.dev

# Functions

AsyncBoxForEntity creates a new async box with the given operation timeout in case an async queue is full.
BoxForEntity opens a box of Entity objects.
ObjectBoxModel declares and builds the model from all the entities in the package.

# Variables

Entity_ contains type-based Property helpers to facilitate some common operations such as Queries.
No description provided by the author

# Structs

Entity model.
EntityAsyncBox provides asynchronous operations on Entity objects.
Box provides CRUD access to Entity objects.
Query provides a way to search stored objects For example, you can find all Entity which ID is either 42 or 47: box.Query(Entity_.ID.In(42, 47)).Find().