예제 #1
0
 public AirlinesController()
 {
     if (WebConfigurationManager.AppSettings["UseMongoDB"].ToUpperInvariant() == "TRUE")
     {
         context = new MongoData();
     }
     else
     {
         context = new BigDataData.EF.EfData();
     }
 }
예제 #2
0
파일: Program.cs 프로젝트: tachyony/BigData
 public Program()
 {
     if (ConfigurationManager.AppSettings["UseMongoDB"].ToUpperInvariant() == "TRUE")
     {
         context = new MongoData();
     }
     else
     {
         context = new BigDataData.EF.EfData();
     }
 }