public IMergeDataBuilderNotMatchTargetExclude <TTable> WhenNotMatchedByTargetThenInsert( MergeTargetSourceCondition <TTable>?and = null) { this._whenNotMatchedByTarget = WhenNotMatchedByTarget.Insert(and?.Invoke(this._table, this._sourceTableAlias).AssertNotNull("Boolean expression cannot be null")); return(this); }
public IMergeDataBuilderNotMatchTarget <TTable> WhenMatchedThenDelete(MergeTargetSourceCondition <TTable>?and = null) { this._whenMatched = WhenMatched.Delete(and?.Invoke(this._table, this._sourceTableAlias).AssertNotNull("Boolean expression cannot be null")); return(this); }