hiiii.
i want to know that how to write Linq to SQL select query in Webservices?
plz give me some example.using c# language
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ranjan sahooPosted Feb 14, 2014, 1:15 AM
public List SelectMethod()
{
DataClassesDataContext dt = new DataClassesDataContext();
var result = from p in dt.Employee_Tables where p.Name == "W" select p; return result.ToList();
}
ranjan sahooPosted Feb 14, 2014, 1:13 AM
Lakshmanan Sethu SankaranarayanPosted Feb 14, 2014, 12:57 AM