Exemple #1
0
 def get_entity_count(self, state=None):
     from aleph.model.entity import Entity
     q = Entity.all()
     q = q.filter(Entity.collection_id == self.id)
     if state is not None:
         q = q.filter(Entity.state == state)
     return q.count()
Exemple #2
0
 def get_entity_count(self, state=None):
     from aleph.model.entity import Entity, collection_entity_table
     q = Entity.all()
     q = q.join(collection_entity_table)
     q = q.filter(collection_entity_table.c.collection_id == self.id)
     if state is not None:
         q = q.filter(Entity.state == state)
     return q.count()