Changeset 99

User picture

Author: marisic.net

(2009/02/10 21:56) Over 3 years ago


  

Affected files

Updated StructuredWeb/StructuredWeb/Repository/NHibernateDataAccess/SessionConstraint.cs Download diff

9899
48
        public bool Null()
48
        public bool Null()
49
        {
49
        {
50
            bool isNull = IsNull(_session);
50
            bool isNull = IsNull(_session);
51
            return nextBool ? isNull : isNull;
51
            return nextBool ? isNull : !isNull;
52
        }
52
        }
53
53
54
54
...
...
62
        {
62
        {
63
            bool isClosed = IsClosed(_session);
63
            bool isClosed = IsClosed(_session);
64
64
65
            return nextBool ? isClosed : isClosed;
65
            return nextBool ? isClosed : !isClosed;
66
        }
66
        }
67
67
68
        /// <summary>
68
        /// <summary>