次のデータベース構造があり、EntityFrameworkを使用しているとします。
5分ごとに、「phasecount」テーブルは「Phase」の各レコードのレコードを取得します。
using (Entities db = new Entities())
{
db.ContextOptions.LazyLoadingEnabled = false;
int numberofcontrollers = (from a in db.Junctions select a).Count();
List<int> controllerids = (from b in db.Junctions select b.Id).ToList();
var configuration = (from c in db.Configurations select c).First();
DateTime laststamp = (from s in db.Stamps select s.Time).Max();
DateTime firststamp = laststamp.AddMinutes(-1 * (CountIntervalsBefore - 1) * TimeSliceLength);
var stamps = from s in db.Stamps.Include("PhaseCounts.Phase") where s.Time >= firststamp && s.Time <= laststamp orderby s.Id select s;
// check consistency; number of stamps should equal timeslices*controllers
if (stamps.Count() != CountIntervalsBefore * numberofcontrollers)
{
//counts are not available for all timeslices and controllers
//do extended consistency check (and use dummy data?)
}
}
すべてのフェーズの各フェーズカウントを1時間選択したいと思います。
スタンプは通常72に相当します。つまり、12個の5分スライス*6個のジャンクションです。
72に等しくない場合、どのフェーズとどのタイムスタンプにデータが欠落しているかを判断するにはどうすればよいですか?