To get maximum value of a column that contains integer, I can use the following T-SQL comand
SELECT MAX(expression ) FROM tables WHERE predicates;
In VB.Net it would be
Dim maxAge As Integer = context.Persons.Max(Function(p) p.Age)