Beispiel #1
0
        //
        // static factory methods
        //

        #region internal static DBAssignSet Set(DBClause assignment) + 1 overload

        internal static DBAssignSet Set(DBClause item, DBClause toValue)
        {
            DBAssign assign = DBAssign.Set(item, toValue);

            return(Set(assign));
        }
Beispiel #2
0
        //
        // statement construction methods
        //

        #region public DBAssignSet AndSet(DBClause item, DBClause toValue)

        public DBAssignSet AndSet(DBClause item, DBClause toValue)
        {
            DBAssign assign = DBAssign.Set(item, toValue);

            return(this.AndSet(assign));
        }
Beispiel #3
0
        /// <summary>
        /// creates a parameter assignment statement in this script
        /// </summary>
        /// <param name="param"></param>
        /// <param name="clause"></param>
        /// <returns></returns>
        public DBScript Set(DBParam param, DBClause clause)
        {
            DBAssign assign = DBAssign.Set(param, clause);

            return(this.Set(assign));
        }