read<E> method

ModelTransactionDocument<E> read<E>(
  1. DocumentBase<E> document
)

You can convert it to a ModelTransactionDocument by passing document.

The converted object can be retrieved, saved, and deleted with ModelTransactionDocument.load, ModelTransactionDocument.save, and ModelTransactionDocument.delete respectively. delete] to retrieve, save, and delete data, respectively.

documentを渡すことでModelTransactionDocumentに変換することができます。

変換されたオブジェクトはModelTransactionDocument.loadModelTransactionDocument.saveModelTransactionDocument.deleteでそれぞれデータ取得、保存、削除を行うことができます。

Implementation

ModelTransactionDocument<E> read<E>(DocumentBase<E> document) =>
    ModelTransactionDocument<E>._(this, document);