MonoSoftware.MonoX.DAL.EntityClasses.SnNoteEntity.GetRelatedData C# (CSharp) Method

GetRelatedData() protected method

Gets all related data objects, stored by name. The name is the field name mapped onto the relation for that particular data element.
protected GetRelatedData ( ) : object>.Dictionary
return object>.Dictionary
        protected override Dictionary<string, object> GetRelatedData()
        {
            Dictionary<string, object> toReturn = new Dictionary<string, object>();
            toReturn.Add("AspnetApplication", _aspnetApplication);
            toReturn.Add("AspnetUserAuthor", _aspnetUserAuthor);
            toReturn.Add("AspnetUserPostedTo", _aspnetUserPostedTo);
            toReturn.Add("Language", _language);
            toReturn.Add("PrivacyLevel", _privacyLevel);
            toReturn.Add("SnGroup", _snGroup);
            toReturn.Add("SnEvents", _snEvents);
            toReturn.Add("SnRelationships", _snRelationships);
            return toReturn;
        }