Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IStore ¶
type IStore[ID any, DATA any] interface { // OTHER GetCount(filter map[string]interface{}) (int64, error) // CRUD InsertOne(data DATA) (record.Record[ID, DATA], error) FindOne(filter map[string]interface{}) (record.Record[ID, DATA], error) FindAll(page Page, filter map[string]interface{}) (recordset.RecordSet[ID, DATA], error) DeleteOne(filter map[string]interface{}) (record.Record[ID, DATA], error) UpdateOne(filter map[string]interface{}, update map[string]interface{}) (record.Record[ID, DATA], error) }
Click to show internal directories.
Click to hide internal directories.