LINQ code to find average marks of student

Amatya
Posted by Amatya under LINQ category on | Points: 40 | Views : 2169
LINQ code to find average marks of student

Public void DNFAvg()
{
var query = (from a in db.tblDnf. Marks).Average();

}

Comments or Responses

Login to post response