Returns the cipher key to be used by @Json decorated properties with [[IJsonOption.encrypt]] === true. Provide
a function that returns the key as a string. The function will be given the context of this
of the model
from which it is being called.
The database to which this @Model object is bound
Optionally set the default MongoDB collation for this model. For valid settings see: https://docs.mongodb.com/manual/reference/collation-locales-defaults/#collation-languages-locales
The name of the collection in the database referenced in db
that represents this model.
The name of the database for this model which is used to retrieve the MongoDB
Db
object from
SakuraMongoDbConnection. I.e, whatever name you used in your congifuration of SakuraMongoDbConnection
for the database connection for this model, use that name here.
If true, fields without an Explicit @Db will still be written to the Db and used to rehydrate objects fromDb
.
Prevents the injection of CRUD functions (see Model function).
Generated using TypeDoc
Interface defining the properties for the
@
Model({})` decorator.