Fixed
Details
Assignee
UnassignedUnassignedReporter
Thomas HotzThomas HotzComponents
Fix versions
Affects versions
Priority
MinorWho's Looking?
Open Who's Looking?
Details
Details
Assignee
Unassigned
UnassignedReporter
Thomas Hotz
Thomas HotzComponents
Fix versions
Affects versions
Priority
Who's Looking?
Open Who's Looking?
Created November 26, 2010 at 5:35 AM
Updated May 10, 2013 at 12:44 AM
Resolved May 10, 2013 at 12:44 AM
On Sql Server 2008 the following query will only return the truncated integer part (Age is a integer field):
session.Query<Person>.Average(p => p.Age)
Person Age Value (1, 2, 2)
Results:
SQL Server 2008: 1.0
SQLite: 1.666666666666...
Linq to Objects: 1.666666666666...
The SQL Server documentation confirms this behaviour. Therefore for SQL Server 2008 it would be necessary to cast the integer value into a float value before calculating the average.