Example #1
0
 public IMergeDataBuilderFinalOutput <TTable> WhenNotMatchedBySourceThenDelete(Func <TTable, ExprBoolean>?and = null)
 {
     this._whenNotMatchedBySource = WhenNotMatchedBySource.Delete(and?.Invoke(this._table).AssertNotNull("Boolean expression cannot be null"));
     return(this);
 }
Example #2
0
 public IMergeDataBuilderNotMatchSourceWithMap <TTable> WhenNotMatchedBySourceThenUpdate(Func <TTable, ExprBoolean>?and = null)
 {
     this._whenNotMatchedBySource = WhenNotMatchedBySource.Update(and?.Invoke(this._table).AssertNotNull("Boolean expression cannot be null"));
     return(this);
 }