コード例 #1
0
        private static string CodeSnippetDeleteChildren(ReferenceCascadeDeleteInfo info)
        {
            return string.Format(
@"            if (deletedIds.Count() > 0)
            {{
                {0}.{1}[] childItems = deletedIds.SelectMany(parent => _executionContext.Repository.{0}.{1}.Query().Where(child => child.{2}ID == parent.ID).ToArray()).ToArray();
                if (childItems.Count() > 0)
                {{
                    _domRepository.{0}.{1}.Delete(childItems);
                }}
            }}
",
            info.Reference.DataStructure.Module.Name,
            info.Reference.DataStructure.Name,
            info.Reference.Name,
            info.Reference.Referenced.Module.Name,
            info.Reference.Referenced.Name);
        }
コード例 #2
0
 private static string CodeSnippetDeleteChildren(ReferenceCascadeDeleteInfo info)
 {
     return string.Format(
     @"            if (deleted.Count() > 0)
     {{
         {0}.{1}[] childItems = deleted.SelectMany(parent => _executionContext.NHibernateSession.Query<{0}.{1}>().Where(child => child.{2}.ID == parent.ID).ToArray()).ToArray();
         if (childItems.Count() > 0)
         {{
             _domRepository.{0}.{1}.Delete(childItems);
             // Workaround to restore NH proxies after using NHSession.Clear() when deleting the detail entity.
             for (int i = 0; i < updated.Length; i++) updated[i] = _executionContext.NHibernateSession.Load<{3}.{4}>(updated[i].ID);
             for (int i = 0; i < deleted.Length; i++) deleted[i] = _executionContext.NHibernateSession.Load<{3}.{4}>(deleted[i].ID);
         }}
     }}
     ",
     info.Reference.DataStructure.Module.Name,
     info.Reference.DataStructure.Name,
     info.Reference.Name,
     info.Reference.Referenced.Module.Name,
     info.Reference.Referenced.Name);
 }