Exemplo n.º 1
0
 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);
 }
Exemplo n.º 2
0
 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);
 }