コード例 #1
0
 public async Task <dynamic> Get()
 {
     if (_cloudantService == null)
     {
         return(new string[] { "No database connection" });
     }
     else
     {
         return(await _cloudantService.GetAllAsync());
     }
 }
コード例 #2
0
ファイル: DbController.cs プロジェクト: Smsemosa/BlueMixYet
 public async Task <dynamic> GetAll()
 {
     return(await _cloudantService.GetAllAsync());
 }