Exemplo n.º 1
0
        public DBTableHintSet WithHint(DBTableHint hint, params string[] options)
        {
            DBTableHintOption opt = DBTableHintOption.WithHint(hint, options);

            this.WithHint(opt);
            return(this);
        }
Exemplo n.º 2
0
        //
        // Instance methods - each adds a new hint to the collection and returns the owner table
        //


        public DBTableHintSet WithHint(DBTableHint hint)
        {
            DBTableHintOption opt = DBTableHintOption.WithHint(hint);

            this.WithHint(opt);
            return(this);
        }