Skip to content

Commit 690c47a

Browse files
committed
releasenotes.txt: Fix line ending muckiness.
1 parent a361f5f commit 690c47a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

releasenotes.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ Build 3.3.3.GA
33

44
BEWARE: 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

0 commit comments

Comments
 (0)