Modify method is used to insert a record if not exists or update the record if exists, in a table. Syntax
		Modify( x =>
			x.From( Table | SubSelect )
			 .Where( Condition )
		)
		.OnInsert( new_row)
		.onUpdate( new_row , old_row)
		.onAlways( new_row , old_row)
    
Examples