コード例 #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();
     }
 }