# Functions
In - adds ANY clause to query:
WHERE field = Any (1,2,3)
If length of array equals 0 condition skips.
Create - creates storage connection entity.
CursorPagination - adds limit, id where clause and sort to query.
No description provided by the author
No description provided by the author
In - adds IN clause to query:
WHERE field IN (1,2,3)
If length of array equals 0 condition skips.
NewNumeric -.
NewTable - creates Table structure.
NewTransactable - creates Transactable structure.
Pagination - adds limit, offset and sort to query.
# Structs
Storage - default storage structure containing Transactable interface and connection to database.
Table - Postgres realization of Table interface.
Transactable - realization of Transactable interface for Postgres.
Transaction -.