Click here to Skip to main content
15,913,854 members

Comments by A_sachin (Top 2 by date)

A_sachin 15-Aug-12 0:03am View    
Here is the implementation of my method...

public List<student> getStudents()
{
using (StudentsEntities ctx=new StudentsEntities())
{
return (from s in ctx.Students select s).ToList();
}
}
A_sachin 15-Aug-12 0:01am View    
yes , i have done all the changes that are required to convert WCF into REST service...!!