@@ -150,7 +150,7 @@ namespace TEAMModelOS.Controllers
List<CourseCount> schoolCourse = new List<CourseCount>();
if (!string.IsNullOrEmpty(school)) {
await foreach (var item in client.GetContainer(Constant.TEAMModelOS, Constant.School).GetItemQueryIterator<CourseCount>(courseSql, requestOptions: new QueryRequestOptions() { PartitionKey = new PartitionKey($"Course-{school}") }))
- {
+ {
schoolCourse.Add(item);
}