示例#1
0
        public void OnGet(long id)
        {
            NotificationsAboutId = context.Notifications.Where(n => n.Text.Contains("//" + id + "\""))
                                   .OrderByDescending(n => n.Timestamp).ToList();
            Structure = context.Structures.Where(s => s.StructureId == id).FirstOrDefault();
            if (Structure == null && NotificationsAboutId.Count > 0)
            {
                //create it if we have seen it before in notificiations.
                Structure             = new Structure();
                Structure.Name        = Regex.Replace(NotificationsAboutId[0].ParsedData["structureLink"], "<.+?>", "");
                Structure.StructureId = long.Parse(Regex
                                                   .Match(NotificationsAboutId[0].ParsedData["structureLink"], @"//(\d+)").Groups[1].Value);
                Structure.FirstSeen = NotificationsAboutId[NotificationsAboutId.Count - 1].Timestamp;

                context.Attach(Structure);
                context.SaveChanges();
            }
        }