CustomOperators

Namespace: Chimayo.Ssis.Common

Useful operators

Functions and values

Function or valueDescription
( @?! ) test exceptionMessage
Signature: test:bool -> exceptionMessage:string -> unit

Shorthand for conditional exception throwing: 'test @?! "exception message if true"'

CompiledName: op_AtQmarkBang

( @?@ ) a b test
Signature: a:'?9826 -> b:'?9826 -> test:bool -> '?9826
Type parameters: '?9826

Allows constructs like 'test |> (doSomethingIfTrue @?@ doSomethingElseIfFalse) which is useful for supporting alternative behaviours in chained functions

CompiledName: op_AtQmarkAt