public async Task LoadCitationsAsync() { _iocCommonNotifications.DataLogEntryAdd("Loading Citation data"); { try { // Run query IEnumerable <XElement> de = from el in localGrampsXMLdoc.Descendants(ns + "citation") select el; // Loop through results to get the Citation foreach (XElement pcitation in de) { CitationModel loadCitation = new CitationModel(); // Citation attributes loadCitation.LoadBasics(GetBasics(pcitation)); if (loadCitation.Id == "C0520") { } // Citation fields loadCitation.GDateContent = GetDate(pcitation); loadCitation.GPage = GetElement(pcitation.Element(ns + "page")); loadCitation.GConfidence = GetDataConfidence(pcitation); loadCitation.GNoteRefCollection = GetNoteCollection(pcitation); // ObjectRef loading loadCitation.GMediaRefCollection = await GetObjectCollection(pcitation).ConfigureAwait(false); loadCitation.GSourceAttributeCollection = GetSrcAttributeCollection(pcitation); loadCitation.GSourceRef.HLinkKey = GetHLinkKey(pcitation.Element(ns + "sourceref")); loadCitation.GTagRef = GetTagCollection(pcitation); // Save the citation DataStore.Instance.DS.CitationData.Add(loadCitation); } } catch (Exception e) { _iocCommonNotifications.NotifyException("Exception loading Citations form XML", e); throw; } _iocCommonNotifications.DataLogEntryReplace("Citation load complete"); return; } }
/// <summary> /// Load Citations from external storage. /// </summary> /// <returns> /// Flag if loaded successfully. /// </returns> public async Task LoadCitationsAsync() { await DataStore.CN.MajorStatusAdd("Loading Citation data").ConfigureAwait(false); { // Load notes try { // Run query var de = from el in localGrampsXMLdoc.Descendants(ns + "citation") select el; // Loop through results to get the Citation foreach (XElement pcitation in de) { CitationModel loadCitation = DV.CitationDV.NewModel(); // Citation attributes loadCitation.LoadBasics(GetBasics(pcitation)); //loadCitation.Id = GetAttribute(pcitation, "id"); //loadCitation.Change = GetDateTime(pcitation, "change"); //loadCitation.Priv = SetPrivateObject(GetAttribute(pcitation, "priv")); //loadCitation.Handle = GetAttribute(pcitation, "handle"); if (loadCitation.Id == "C0656") { } // Citation fields loadCitation.GDateContent = GetDate(pcitation); loadCitation.GPage = GetElement(pcitation.Element(ns + "page")); loadCitation.GConfidence = GetElement(pcitation.Element(ns + "confidence")); loadCitation.GNoteRefCollection = GetNoteCollection(pcitation); // ObjectRef loading loadCitation.GMediaRefCollection = await GetObjectCollection(pcitation).ConfigureAwait(false); loadCitation.GSourceAttributeCollection = GetSrcAttributeCollection(pcitation); loadCitation.GSourceRef.HLinkKey = GetAttribute(pcitation.Element(ns + "sourceref"), "hlink"); loadCitation.GTagRef = GetTagCollection(pcitation); // set the Home image or symbol now that everything is laoded loadCitation = SetHomeImage(loadCitation); // save the event DV.CitationDV.CitationData.Add(loadCitation); } } catch (Exception e) { DataStore.CN.NotifyException("Exception loading Citations form XML", e); throw; } } await DataStore.CN.MajorStatusDelete().ConfigureAwait(false); return; }