Hi guys, what is the best way to retrieve the maximum value from a numeric field in an entity?
Something like this in SQL Server: Select MAX(NumbericFieldName) From TableName.
Maybe:
var maxZ = list.Max( obj => obj.Z ); is this possible?
Thanks,
john