getEntityRepositoresTables method

FutureOr<Map<EntityRepository<Object>, String>> getEntityRepositoresTables()

Implementation

FutureOr<Map<EntityRepository, String>> getEntityRepositoresTables() =>
    entityRepositories
        .map((r) => MapEntry<EntityRepository, String>(
            r, getTableForEntityRepository(r)))
        .toMapFromEntries();