File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ Build 3.3.3.GA
3
3
4
4
BEWARE: In versions prior to 3.3.3.CR1, the handling of the LINQ Take() method
5
5
was flawed - no matter where in the query Take() was placed it was
6
- always applied as if it had been placed at the end. 3.3.3 fixes this,
7
- so that Take() now correctly follows the .Net semantics. That is, in
8
- 3.3.3, the following queries might now give different results:
9
-
10
- session.Query<Foo>.OrderBy(...).Take(5).Where(...);
6
+ always applied as if it had been placed at the end. 3.3.3 fixes this,
7
+ so that Take() now correctly follows the .Net semantics. That is, in
8
+ 3.3.3, the following queries might now give different results:
9
+
10
+ session.Query<Foo>.OrderBy(...).Take(5).Where(...);
11
11
session.Query<Foo>.Where(...).OrderBy(...).Take(5);
12
12
13
- Starting with 3.3.3, the first query will generate a subquery to correctly
14
- apply the row limit before the where-clause.
13
+ Starting with 3.3.3, the first query will generate a subquery to correctly
14
+ apply the row limit before the where-clause.
15
15
16
16
** Bug
17
17
* [NH-2408] - SQL Server pessimistic locking syntax incorrect for union-subclass
You can’t perform that action at this time.
0 commit comments