コード例 #1
0
 public static RedisDictionary <string, ResultViewModel> Results(this RedisService cache)
 => cache.Dictionary <string, ResultViewModel>();
コード例 #2
0
 public static RedisDictionary <Department, ScoreSummaryByDepartmentViewModel> DepartmentScoreSummaries(this RedisService cache)
 => cache.Dictionary <Department, ScoreSummaryByDepartmentViewModel>();
コード例 #3
0
 public static RedisDictionary <int, QuestionSeed> QuestionSeeds(this RedisService cache)
 => cache.Dictionary <int, QuestionSeed>();
コード例 #4
0
 public static RedisDictionary <int, CorrectAnswerViewModel> Answers(this RedisService cache)
 => cache.Dictionary <int, CorrectAnswerViewModel>();
コード例 #5
0
 public static RedisDictionary <int, QuestionViewModel> Questions(this RedisService cache)
 => cache.Dictionary <int, QuestionViewModel>();
コード例 #6
0
 public static RedisDictionary <string, StudentViewModel> StudentViewModels(this RedisService cache, Department department)
 => cache.Dictionary <string, StudentViewModel>(department.ToString());
コード例 #7
0
 public static RedisDictionary <string, Student> StudentEntities(this RedisService cache, Department department)
 => cache.Dictionary <string, Student>(department.ToString());