Example #1
0
 public IMergeDataBuilderNotMatchTarget <TTable> AlsoSet(MergeUpdateMapping <TTable> mapping)
 {
     this._whenMatched = this._whenMatched
                         .AssertNotNull("WhenMatched is expected to be set")
                         .WithMapping(mapping.AssertArgumentNotNull(nameof(mapping)));
     return(this);
 }
Example #2
0
 public IMergeDataBuilderNotMatchSource <TTable> AlsoInsert(MergeUpdateMapping <TTable> mapping)
 {
     this._whenNotMatchedByTarget = this.AssertNotMatchedByTargetIsSet()
                                    .WithMapping(mapping.AssertArgumentNotNull(nameof(mapping)));
     return(this);
 }
Example #3
0
 public IUpdateDataBuilderFinal AlsoSet(MergeUpdateMapping <TTable> mapping)
 {
     this._alsoSet = mapping.AssertArgumentNotNull(nameof(mapping));
     return(this);
 }