Skip to content

Commit d93b637

Browse files
committed
Update to NHibernate 3.3.1.
1 parent 9bdc9d3 commit d93b637

11 files changed

+23
-1
lines changed

RakeFile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ namespace :package do
146146
nu.language = 'en-US'
147147
nu.licenseUrl = 'http://github.com/jagregory/fluent-nhibernate/raw/master/LICENSE.txt'
148148
nu.projectUrl = 'http://fluentnhibernate.org'
149-
nu.dependency 'NHibernate', '3.3.0.4000'
149+
nu.dependency 'NHibernate', '3.3.1.4000'
150150
nu.working_directory = 'build'
151151
nu.output_file = 'fluentnhibernate.nuspec'
152152
nu.file 'FluentNHibernate.dll', 'lib'
0 Bytes
Binary file not shown.
-2 KB
Binary file not shown.

tools/NHibernate/3.x/NHibernate.dll

3.5 KB
Binary file not shown.

tools/NHibernate/3.x/NHibernate.pdb

-210 KB
Binary file not shown.

tools/NHibernate/3.x/NHibernate.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29089,6 +29089,17 @@
2908929089
then emit the correct HQL join.
2909029090
</summary>
2909129091
</member>
29092+
<member name="T:NHibernate.Linq.ExpressionTransformers.RemoveCharToIntConversion">
29093+
<summary>
29094+
Remove unwanted char-to-int conversions in binary expressions
29095+
</summary>
29096+
<remarks>
29097+
The LINQ expression tree may contain unwanted type conversions that were not in the original expression written by the user. For example,
29098+
<c>list.Where(someChar => someChar == 'A')</c> becomes the equivalent of <c>list.Where(someChar => (int)someChar == 55)</c> in the expression
29099+
tree. Converting this directly to a HQL/SQL statement would yield <code>CAST(x AS INT)</code> which does not work in MSSQLSERVER, and possibly
29100+
other databases.
29101+
</remarks>
29102+
</member>
2909229103
<member name="T:NHibernate.Linq.GroupBy.AggregatingGroupByRewriter">
2909329104
<summary>
2909429105
An AggregatingGroupBy is a query such as:

tools/NHibernate/Iesi.Collections.dll

0 Bytes
Binary file not shown.

tools/NHibernate/Iesi.Collections.pdb

-2 KB
Binary file not shown.

tools/NHibernate/NHibernate.dll

3.5 KB
Binary file not shown.

tools/NHibernate/NHibernate.pdb

-210 KB
Binary file not shown.

0 commit comments

Comments
 (0)