public static Dictionary <string, Table> CreateLookup(Database db)
            {
                var lookup = new TypeTableLookup();

                lookup.VisitDatabase(db);
                return(lookup.typeToTable);
            }
 public static Dictionary<string, Table> CreateLookup(Database db)
 {
     var lookup = new TypeTableLookup();
     lookup.VisitDatabase(db);
     return lookup.typeToTable;
 }
Exemple #3
0
 public static Dictionary <string, Table> GetTablesByTypeName(Database db)
 {
     return(TypeTableLookup.CreateLookup(db));
 }