Example #1
0
        void IBindablePredicate.BindWhere(ICommandBuilder builder)
        {
            builder.AppendFrom(Column.Table);

            if (IsJoinPredicate)
            {
                builder.JoinPredicates.Add(this);
            }
            else
            {
                builder.WherePredicates.Add(this);
            }
        }
Example #2
0
        void IBindablePredicate.BindHaving(ICommandBuilder builder)
        {
            builder.AppendFrom(Column.Table);

            builder.HavingPredicates.Add(this);
        }