コード例 #1
0
 public void Handle(SetParentCommand command, ICommandExecutionContext context)
 {
     foreach (var formerParentId in context.GetRelated(this, x => x.Parent))
     {
         context.Detach(this, x => x.Parent, formerParentId);
     }
     context.Attach(this, x => x.Parent, command.ParentNodeId);
 }
コード例 #2
0
 public void Handle(SetHierarchyRootCommand command, ICommandExecutionContext context)
 {
     foreach (var formerRootId in context.GetRelated(this, x => x.RootNode))
     {
         context.Detach(this, x => x.RootNode, formerRootId);
     }
     context.Attach(this, x => x.RootNode, command.NodeId);
 }
コード例 #3
0
 public void Handle(AttachToHierarchyCommand command, ICommandExecutionContext context)
 {
     context.Attach(this, x => x.Nodes, command.NodeId);
 }
コード例 #4
0
 public void Handle(TestingCommand command, ICommandExecutionContext context)
 {
     context.Attach(this, x => x.SingleValuedRelation, command.TargetObjectId);
 }
コード例 #5
0
 public void Handle(AttachChildCommand command, ICommandExecutionContext context)
 {
     context.Attach(this, x => x.Children, command.ChildNodeId);
 }
コード例 #6
0
 public void Handle(AttachObjectCommand command, ICommandExecutionContext context)
 {
     context.Attach(command.RefereeObjectId, command.RelationName);
 }
コード例 #7
0
 private static void DoAttach <TTarget, TValue>(Expression <Func <TTarget, TValue> > propertyExpression, ICommandExecutionContext context, ObjectId refereeId)
 {
     context.Attach(refereeId, GetRelationName(propertyExpression));
 }
コード例 #8
0
 public void Handle(CreateHierarchyNodeCommand command, ICommandExecutionContext context)
 {
     context.Create(this);
     context.Attach(this, x => x.Unit, command.UnitId);
     context.Attach(this, x => x.Context, command.HierarchyId);
 }