예제 #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));
        }
예제 #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));
        }
예제 #3
0
파일: DBScript.cs 프로젝트: jschmer/dynasql
        /// <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));
        }