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
33
44BEWARE: In versions prior to 3.3.3.CR1, the handling of the LINQ Take() method
55 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(...);
1111 session.Query<Foo>.Where(...).OrderBy(...).Take(5);
1212
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.
1515
1616** Bug
1717 * [NH-2408] - SQL Server pessimistic locking syntax incorrect for union-subclass
You can’t perform that action at this time.
0 commit comments