Dart Documentationobjectory_baseRawDbCollection

RawDbCollection class

class RawDbCollection {
 String collectionName;
 Future<Map> findOne([selector]) { throw new Exception('method findOne must be implemented'); }
 Future<int> count([selector]) { throw new Exception('method count must be implemented'); }  
 Future<List<Map>> find([selector]) { throw new Exception('method find must be implemented'); }
 Future remove([selector]) { throw new Exception('method find must be implemented');} 
}

Properties

String collectionName #

String collectionName

Methods

Future<int> count([selector]) #

Future<int> count([selector]) { throw new Exception('method count must be implemented'); }

Future<List<Map>> find([selector]) #

Future<List<Map>> find([selector]) { throw new Exception('method find must be implemented'); }

Future<Map> findOne([selector]) #

Future<Map> findOne([selector]) { throw new Exception('method findOne must be implemented'); }

Future remove([selector]) #

Future remove([selector]) { throw new Exception('method find must be implemented');}