public override bool Equals()

in test-outofproc/ReservedTableNameTrigger.cs [33:42]


        public override bool Equals(object obj)
        {
            if (obj is User)
            {
                var that = obj as User;
                return this.UserId == that.UserId && this.UserName == that.UserName && this.FullName == that.FullName;
            }

            return false;
        }