bulkUpsert<T> method

OpResult bulkUpsert<T>(
  1. List<T> instances, [
  2. String? tableName
])

Implementation

OpResult bulkUpsert<T>(List<T> instances, [String? tableName]) {
  return _unitOfWorkUpsert.bulkUpsert(instances, tableName);
}