read<E> method

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

You can convert it to a ModelBatchDocument by passing document.

Converted objects can be saved and deleted with ModelBatchDocument.save and ModelBatchDocument.delete, respectively.

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

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

Implementation

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