Ejemplo n.º 1
0
        private void UpdateSQL()
        {
            queryBuilder = new CreateTriggerQueryBuilder(TriggerName)
                           .IfNotExists(IsIfNotExists)
                           .On(selectedTarget)
                           .ForEachRow(IsForEachRow)
                           .When(whenExpression)
                           .Do(triggerActions);

            SetEntryPoint();
            SetEvent();

            Sql = queryBuilder.Build();
        }