示例#1
0
        public void MergeWhen(bool matched, Constructor.dbMby by)
        {
            MergerAction action = new MergerAction();

            action.Matched = matched;
            action.By      = by;
            Actions.Add(action);
        }
示例#2
0
 /// <summary>Adds a "matched" or "not matched" condition to the merge action based on an specific data origin</summary>
 public Query MergeWhen(bool matched, Constructor.dbMby by)
 {
     merge.MergeWhen(matched, by);
     return(this);
 }