TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
LINQ To SQL: Max operator
Vijai Anand Ramalingam
Jun 20, 2011
7
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog we will be seeing how to Find the Maximum Value in a Numeric Sequence
EmpDetails Table:
Code:
To find the Maximum Value in a Numeric Sequence.
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
namespace
LINQ
{
class
Program
{
static
void
Main(
string
[] args)
{
DataClassesDataContext
dc =
new
DataClassesDataContext
();
var
maxSalary = (
from
emp
in
dc.EmpDetails
select
emp.Salary).Max();
Console
.WriteLine(maxSalary);
Console
.Read();
}
}
}
Output:
80000
Next Recommended Reading
LINQ To SQL: Sum operator