예제 #1
0
 public static void RegisterData()
 {
     using (EitanDbContext _db = new EitanDbContext())
     {
         var relRepo = new ReleaseRepository(_db);
         //Static Genres Resource - lives in memory not in db...
         StaticCode.StaticClients      = _db.Clients.Where(w => w.isDeleted == false).OrderBy(o => o.Title).ToDictionary(d => d.ID, d => d.Title);
         StaticCode.StaticProjectTypes = _db.ProjectTypes.Where(w => w.isDeleted == false).OrderBy(o => o.Title).ToDictionary(d => d.ID, d => d.Title);
         StaticCode.StaticGenres       = _db.Genres.Where(w => w.isDeleted == false).OrderBy(o => o.Title).ToDictionary(d => d.ID, d => d.Title);
         StaticCode.StaticYears        = relRepo.GetReleaseYears();
     }
 }